Project Zomboid

Project Zomboid

Inventory Tetris - Grid Based Inventory Overhaul Beta [B41]
Game crashing!
I'm having am major issue, when you have a container inside your inventory (a weaponcrate for example) and drag something out of it into your own inventory. The game crashes.
< >
Zobrazuje se 12 z 2 komentářů
I also have this issue with putting items nested in my bag. Would like to know the fix as well
Think I found a potential fix (works for me)

Need to edit the ItemGrid.lua file on like 612 to this:

if #sessions > 30 then
local session = sessions[1]
table.remove(sessions, 1)
sessions[session.inventory] = nil
end


It's this by default:

if #sessions > 10 then
local session = sessions[1]
table.remove(sessions, 1)
sessions[session.inventory] = nil
end


This might be caused by KIA mods and supporting mods if you're using it
< >
Zobrazuje se 12 z 2 komentářů
Na stránku: 1530 50