v0.4.0: fixed a bug with ring of might logic changes

This commit is contained in:
Evan Debenham 2016-06-17 22:14:53 -04:00
parent 3e7a78e86c
commit f42629c505

View File

@ -42,7 +42,7 @@ public class RingOfMight extends Ring {
if (super.doUnequip(hero, collect, single)){
hero.HT -= level()*5;
hero.HP = Math.min(hero.HP, hero.HT);
return false;
return true;
} else {
return false;
}