Fix jewel level

This commit is contained in:
hodasemi 2024-08-29 15:46:03 +02:00
parent e2e0b20ecf
commit bd9af2255d

View file

@ -358,7 +358,7 @@ impl<A: Ability> ItemSystem<A> {
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)))
}
}
}