Fix parched ghast block size

This commit is contained in:
Sergeant Acoustic 2026-02-18 21:00:15 +00:00
parent 8c08d1d2f6
commit cf1916b6ad

View file

@ -43,7 +43,7 @@ public class ParchedGhast extends Block implements SimpleWaterloggedBlock {
} }
@Override // New collision box @Override // New collision box
public @NotNull VoxelShape getShape(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, CollisionContext collisionContext) { public @NotNull VoxelShape getShape(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, CollisionContext collisionContext) {
return Block.box(3.0, 0.0, 3.0, 13.0, 15.0, 13.0); return Block.box(3.0, 0.0, 3.0, 13.0, 10.0, 13.0);
} }
// Water functions // Water functions