diff --git a/src/main/java/de/ellpeck/naturesaura/blocks/BlockGoldenLeaves.java b/src/main/java/de/ellpeck/naturesaura/blocks/BlockGoldenLeaves.java index 2f886c8d..6dbaf6e9 100644 --- a/src/main/java/de/ellpeck/naturesaura/blocks/BlockGoldenLeaves.java +++ b/src/main/java/de/ellpeck/naturesaura/blocks/BlockGoldenLeaves.java @@ -158,8 +158,9 @@ public class BlockGoldenLeaves extends BlockLeaves implements } if (stage > 1) { - EnumFacing facing = EnumFacing.random(rand); - convert(worldIn, pos.offset(facing)); + BlockPos offset = pos.offset(EnumFacing.random(rand)); + if (worldIn.isBlockLoaded(offset)) + convert(worldIn, offset); } } }