v3.2.0: fixed inventory pane not updating with intuition on rings

This commit is contained in:
Evan Debenham
2025-07-30 13:33:28 -04:00
parent 5c0c3dbb27
commit bdf0c79e02

View File

@@ -118,6 +118,7 @@ public class StoneOfIntuition extends InventoryStone {
if (item.getClass() == curGuess){ if (item.getClass() == curGuess){
if (item instanceof Ring){ if (item instanceof Ring){
((Ring) item).setKnown(); ((Ring) item).setKnown();
Item.updateQuickslot();
} else { } else {
item.identify(); item.identify();
} }