Fixed pickupBlock signature

This commit is contained in:
Frank 2023-12-19 15:17:33 +01:00
parent af56c07a36
commit 5a2513d0a9

View file

@ -33,6 +33,7 @@ import net.fabricmc.api.Environment;
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
import java.util.Optional; import java.util.Optional;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;
public class VentBubbleColumnBlock extends Block implements BucketPickup, LiquidBlockContainer { public class VentBubbleColumnBlock extends Block implements BucketPickup, LiquidBlockContainer {
@ -41,14 +42,14 @@ public class VentBubbleColumnBlock extends Block implements BucketPickup, Liquid
} }
@Override @Override
public ItemStack pickupBlock(LevelAccessor world, BlockPos pos, BlockState state) { public @NotNull ItemStack pickupBlock(Player player, LevelAccessor world, BlockPos pos, BlockState state) {
world.setBlock(pos, Blocks.AIR.defaultBlockState(), 11); world.setBlock(pos, Blocks.AIR.defaultBlockState(), 11);
return new ItemStack(Items.WATER_BUCKET); return new ItemStack(Items.WATER_BUCKET);
} }
@Override @Override
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
public RenderShape getRenderShape(BlockState state) { public @NotNull RenderShape getRenderShape(BlockState state) {
return RenderShape.INVISIBLE; return RenderShape.INVISIBLE;
} }
@ -61,13 +62,13 @@ public class VentBubbleColumnBlock extends Block implements BucketPickup, Liquid
@Override @Override
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
public VoxelShape getShape(BlockState state, BlockGetter world, BlockPos pos, CollisionContext context) { public @NotNull VoxelShape getShape(BlockState state, BlockGetter world, BlockPos pos, CollisionContext context) {
return Shapes.empty(); return Shapes.empty();
} }
@Override @Override
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
public BlockState updateShape( public @NotNull BlockState updateShape(
BlockState state, BlockState state,
Direction direction, Direction direction,
BlockState newState, BlockState newState,
@ -166,13 +167,13 @@ public class VentBubbleColumnBlock extends Block implements BucketPickup, Liquid
@Override @Override
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
public FluidState getFluidState(BlockState state) { public @NotNull FluidState getFluidState(BlockState state) {
return Fluids.WATER.getSource(false); return Fluids.WATER.getSource(false);
} }
@Override @Override
public Optional<SoundEvent> getPickupSound() { public @NotNull Optional<SoundEvent> getPickupSound() {
return Fluids.WATER.getPickupSound(); return Fluids.WATER.getPickupSound();
} }
} }