v3.1.0: fixed hermit crabs not dropping armor when they should

This commit is contained in:
Evan Debenham
2025-05-19 14:57:39 -04:00
parent 7db122ec0c
commit 0c737dad88

View File

@@ -41,7 +41,7 @@ public class HermitCrab extends Crab {
public void rollToDropLoot() {
super.rollToDropLoot();
if (Dungeon.hero.lvl > maxLvl + 2){
if (Dungeon.hero.lvl <= maxLvl + 2){
Dungeon.level.drop(Generator.randomArmor(), pos).sprite.drop();
}
}