Adventure: Fix error in connector lua that was fairly harmless in BizHawk 2.8 but throws in 2.9

This commit is contained in:
JusticePS 2023-04-15 07:28:37 -07:00 committed by Fabian Dill
parent 27cb93d319
commit d85c13ef0e
1 changed files with 1 additions and 1 deletions

View File

@ -598,7 +598,7 @@ function main()
if ( localItemLocations ~= nil and localItemLocations[tostring(carry_item)] ~= nil ) then
pending_local_items_collected[localItemLocations[tostring(carry_item)]] =
localItemLocations[tostring(carry_item)]
table.remove(localItemLocations, tostring(carry_item))
localItemLocations[tostring(carry_item)] = nil
skip_inventory_items[carry_item] = carry_item
end
end