From ee6ce0588ab94ffc9ac0c965e0472ece302428a9 Mon Sep 17 00:00:00 2001 From: Eric Robinson Date: Thu, 4 Dec 2025 18:27:14 -0500 Subject: [PATCH] Update _iStatFlag on HoldItem --- Source/items.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/items.cpp b/Source/items.cpp index d71d815a2..5a5876d07 100644 --- a/Source/items.cpp +++ b/Source/items.cpp @@ -2909,6 +2909,8 @@ void CalcPlrInv(Player &player, bool loadgfx) // If stash is open, ensure the items are displayed correctly Stash.RefreshItemStatFlags(); } + if (!player.HoldItem.isEmpty()) + player.HoldItem.updateRequiredStatsCacheForPlayer(player); } }