diff --git a/src/main/java/com/eu/habbo/habbohotel/items/interactions/pets/InteractionMonsterPlantSeed.java b/src/main/java/com/eu/habbo/habbohotel/items/interactions/pets/InteractionMonsterPlantSeed.java index 96e79004..8bbe249c 100644 --- a/src/main/java/com/eu/habbo/habbohotel/items/interactions/pets/InteractionMonsterPlantSeed.java +++ b/src/main/java/com/eu/habbo/habbohotel/items/interactions/pets/InteractionMonsterPlantSeed.java @@ -33,7 +33,7 @@ public class InteractionMonsterPlantSeed extends HabboItem { public static int randomRarityLevel() { int number = Emulator.getRandom().nextInt(66); int count = 0; - for (int i = 1; i <= 11; i++) { + for (int i = 1; i < 11; i++) { count += 11 - i; if (number <= count) { return i;