Fix inverted bonus potential check in StarTowerGame

This commit is contained in:
epicmsl77-lab
2026-05-25 18:43:59 -07:00
committed by Melledy
parent 57c05c8e32
commit 4baca92455
@@ -633,7 +633,7 @@ public class StarTowerGame {
int level = 1;
// Check for bonuses
if (this.getItemCount(id) > 0) {
if (this.getItemCount(id) == 0) {
// New potential
if (Utils.randomChance(this.getModifiers().getBonusPotentialChance())) {
level += this.getModifiers().getBonusPotentialLevel();