From 811a3b5050d5a54d828aabd6198a525a25374ba4 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 28 Apr 2024 13:22:06 -0400 Subject: [PATCH] v2.4.0: fixed strongman not updating item displays when upgraded --- .../shatteredpixeldungeon/actors/hero/Talent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java index 79caadaac..a56709024 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java @@ -459,7 +459,7 @@ public enum Talent { Dungeon.observe(); } - if (talent == TWIN_UPGRADES || talent == DESPERATE_POWER){ + if (talent == TWIN_UPGRADES || talent == DESPERATE_POWER || talent == STRONGMAN){ Item.updateQuickslot(); }