diff --git a/src/main/java/com/github/minecraftschurlimods/arsmagicalegacy/common/entity/Dryad.java b/src/main/java/com/github/minecraftschurlimods/arsmagicalegacy/common/entity/Dryad.java index 3c3a7e372..3cabcb769 100644 --- a/src/main/java/com/github/minecraftschurlimods/arsmagicalegacy/common/entity/Dryad.java +++ b/src/main/java/com/github/minecraftschurlimods/arsmagicalegacy/common/entity/Dryad.java @@ -52,7 +52,7 @@ public void aiStep() { timer--; if (timer > 0) return; timer = Config.SERVER.DRYAD_BONEMEAL_TIMER.get(); - if (level.random.nextDouble() < Config.SERVER.DRYAD_BONEMEAL_CHANCE.get()) return; + if (level.random.nextDouble() >= Config.SERVER.DRYAD_BONEMEAL_CHANCE.get()) return; int radius = Config.SERVER.DRYAD_BONEMEAL_RADIUS.get(); for (final BlockPos pos : BlockPos.betweenClosed(blockPosition().offset(-radius, -radius, -radius), blockPosition().offset(radius, radius, radius))) { BlockState state = level.getBlockState(pos);