From e05815cfbd8670275cf6949426cd76ac029b5298 Mon Sep 17 00:00:00 2001 From: Jim Shield Date: Sat, 11 Oct 2025 17:23:26 +0100 Subject: [PATCH] Fix getStash forcing fallback functions to run --- shared/itemcontrol.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/itemcontrol.lua b/shared/itemcontrol.lua index 22fabc7..18666d3 100644 --- a/shared/itemcontrol.lua +++ b/shared/itemcontrol.lua @@ -2315,7 +2315,7 @@ function getStash(stashName) if isStarted(inv.invName) then debugPrint("^6Bridge^7: ^2Retrieving ^3"..inv.invName.." ^2Stash^7:", stashName) stashItems = inv.getStash(stashName) - break + goto skip end end @@ -2331,7 +2331,7 @@ function getStash(stashName) end end - + ::skip:: if stashItems then for _, item in pairs(stashItems) do local itemInfo = Items[item.name:lower()]