v1.2.2: fixed right of might HT boost not being affected by lost invent

This commit is contained in:
Evan Debenham 2022-04-04 16:07:11 -04:00
parent 468b0e3c99
commit 6a1c05be4b
2 changed files with 4 additions and 0 deletions

View File

@ -2083,6 +2083,8 @@ public class Hero extends Char {
((MagesStaff) i).applyWandChargeBuff(this); ((MagesStaff) i).applyWandChargeBuff(this);
} }
} }
updateHT(false);
} }
@Override @Override

View File

@ -69,6 +69,8 @@ public class LostBackpack extends Item {
} }
} }
hero.updateHT(false);
Item.updateQuickslot(); Item.updateQuickslot();
Sample.INSTANCE.play( Assets.Sounds.DEWDROP ); Sample.INSTANCE.play( Assets.Sounds.DEWDROP );
hero.spendAndNext(TIME_TO_PICK_UP); hero.spendAndNext(TIME_TO_PICK_UP);