diff --git a/rpg_components/src/items/item_system.rs b/rpg_components/src/items/item_system.rs index bea55d7..9a4ae36 100644 --- a/rpg_components/src/items/item_system.rs +++ b/rpg_components/src/items/item_system.rs @@ -358,7 +358,7 @@ impl ItemSystem { if Coin::flip(0.5) { Some(Loot::AbilityBook(self.random_ability_book(rarity))) } else { - Some(Loot::Jewel(self.random_jewel(level, rarity))) + Some(Loot::Jewel(self.random_jewel(1, rarity))) } } }