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) {
hero.sprite.emitter().start( ShadowParticle.UP, 0.05f, 10 );
hero.updateHT( false ); //for ring of might
updateQuickslot();
if (procced) {
if (hero != null) {
hero.sprite.emitter().start(ShadowParticle.UP, 0.05f, 10);
hero.updateHT(false); //for ring of might
updateQuickslot();
}
Badges.validateClericUnlock();
}