this mod is such a great helper...
yet, it does not run on 1.1
but you can update the
info.json
-8<-----
"factorio_version": "1.1",
-8<-----
if you get the error: "LuaPlayer doesn't contain key character_logistic_slot_count."
update scripts/logistics.lua
-8<-----
--record and remove all old requests
local oldValues = {}
for i = 1, player.character.request_slot_count do
local oldValue = player.get_personal_logistic_slot(i)
if oldValue.name ~= nil then
oldValues[oldValue.name] = oldValue
end
player.clear_personal_logistic_slot(i)
end
--add our new requests
-- Writing to it isn't necessary anymore: player.request_slot_count ....
local slotIndex = 0
-8<-----