Fix error ticking sprout blocks

This commit is contained in:
Sollace 2023-10-28 22:04:50 +01:00
parent 4e88d84524
commit e196b3c226
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB

View file

@ -54,14 +54,20 @@ public class SproutBlock extends CropBlock implements TintedBlock {
@Override
public void randomTick(BlockState state, ServerWorld world, BlockPos pos, Random random) {
super.randomTick(state, world, pos, random);
onGrow(world, world.getBlockState(pos), pos);
state = world.getBlockState(pos);
if (state.isOf(this)) {
onGrow(world, state, pos);
}
}
@Override
public void applyGrowth(World world, BlockPos pos, BlockState state) {
super.applyGrowth(world, pos, state);
state = world.getBlockState(pos);
if (state.isOf(this)) {
onGrow(world, world.getBlockState(pos), pos);
}
}
@Override
protected ItemConvertible getSeedsItem() {
@ -81,7 +87,7 @@ public class SproutBlock extends CropBlock implements TintedBlock {
protected void mature(World world, BlockState state, BlockPos pos) {
state = matureState.get();
world.setBlockState(pos, matureState.get());
world.setBlockState(pos, state);
BlockSoundGroup group = state.getSoundGroup();
world.playSound(null, pos, group.getPlaceSound(), SoundCategory.BLOCKS, group.getVolume(), group.getPitch());
}