diff --git a/src/main/java/blusunrize/immersiveengineering/common/blocks/plant/HempBlock.java b/src/main/java/blusunrize/immersiveengineering/common/blocks/plant/HempBlock.java index 87ad9ab0f9..093cfd47b3 100644 --- a/src/main/java/blusunrize/immersiveengineering/common/blocks/plant/HempBlock.java +++ b/src/main/java/blusunrize/immersiveengineering/common/blocks/plant/HempBlock.java @@ -144,7 +144,7 @@ else if(canGrowTop) { BlockPos above = pos.above(); BlockState aboveState = this.getStateForAge(getMaxAge()).setValue(TOP, true); - world.setBlock(above, aboveState, 2); + world.setBlockAndUpdate(above, aboveState); net.minecraftforge.common.ForgeHooks.onCropsGrowPost(world, above, aboveState); } } @@ -172,6 +172,6 @@ public void growCrops(Level world, BlockPos pos, BlockState state) world.setBlock(pos, this.getStateForAge(newAge), 2); if(growTop) - world.setBlock(pos.above(), this.getStateForAge(getMaxAge()).setValue(TOP, true), 2); + world.setBlockAndUpdate(pos.above(), this.getStateForAge(getMaxAge()).setValue(TOP, true)); } } \ No newline at end of file