v3.0.0: fixed throwing a cursed item in health well not unlocking cleric

This commit is contained in:
Evan Debenham
2025-01-23 14:18:42 -05:00
parent 3d40116f86
commit 72ace4130a

View File

@@ -144,10 +144,12 @@ public class ScrollOfRemoveCurse extends InventoryScroll {
} }
} }
if (procced && hero != null) { if (procced) {
hero.sprite.emitter().start( ShadowParticle.UP, 0.05f, 10 ); if (hero != null) {
hero.updateHT( false ); //for ring of might hero.sprite.emitter().start(ShadowParticle.UP, 0.05f, 10);
updateQuickslot(); hero.updateHT(false); //for ring of might
updateQuickslot();
}
Badges.validateClericUnlock(); Badges.validateClericUnlock();
} }