v3.0.0: fixed armband curse effect not updating gold display on desktop

This commit is contained in:
Evan Debenham
2024-10-24 10:06:34 -04:00
parent 177a849b85
commit ece5a7f3c4
@@ -262,6 +262,7 @@ public class MasterThievesArmband extends Artifact {
public boolean act() { public boolean act() {
if (cursed && Dungeon.gold > 0 && Random.Int(5) == 0){ if (cursed && Dungeon.gold > 0 && Random.Int(5) == 0){
Dungeon.gold--; Dungeon.gold--;
updateQuickslot();
} }
spend(TICK); spend(TICK);