Fix crash condition on station with non-virtual signal for network

This commit is contained in:
Will Berry
2023-03-09 12:59:37 -05:00
parent 7d60f9412a
commit 547bb93390
3 changed files with 11 additions and 10 deletions

View File

@@ -234,7 +234,7 @@ function inventory_tab.build(map_data, player_data)
if next(inventory_requested_table.children) ~= nil then
refs.inventory_requested_table.clear()
end
if next(inventory_in_transit_table.children) ~=nil then
if next(inventory_in_transit_table.children) ~= nil then
refs.inventory_in_transit_table.clear()
end
gui.add(refs.inventory_provided_table, provided_children)