Project Zomboid

Project Zomboid

Inventory Tetris - Grid Based Inventory Overhaul Beta [B41]
CHR3S 2023 年 9 月 12 日 上午 3:02
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.
< >
正在显示第 1 - 2 条,共 2 条留言
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
< >
正在显示第 1 - 2 条,共 2 条留言
每页显示数: 1530 50