Skip to content

Commit

Permalink
Adventure: Fix error in connector lua that was fairly harmless in Biz…
Browse files Browse the repository at this point in the history
…Hawk 2.8 but throws in 2.9
  • Loading branch information
JusticePS authored and Berserker66 committed Apr 15, 2023
1 parent 27cb93d commit d85c13e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/lua/connector_adventure.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d85c13e

Please sign in to comment.