From 9f3a31a21a379576b869429771f6b46c00476fa9 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 18 Feb 2025 15:58:51 -0500 Subject: [PATCH] v3.0.0: fixed rare quickslot errors after upgrading durable projectiles --- .../shatteredpixeldungeon/actors/hero/Talent.java | 3 ++- 1 file changed, 2 insertions(+), 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 9b55a6e68..1b9919059 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 @@ -526,7 +526,8 @@ public enum Talent { Dungeon.observe(); } - if (talent == TWIN_UPGRADES || talent == DESPERATE_POWER || talent == STRONGMAN){ + if (talent == TWIN_UPGRADES || talent == DESPERATE_POWER + || talent == STRONGMAN || talent == DURABLE_PROJECTILES){ Item.updateQuickslot(); }