Call isEmpty() on object, not serializable

This commit is contained in:
Gabriel Tofvesson 2024-10-03 16:57:14 +02:00
parent d0929cf5c8
commit a124e870c7

View File

@ -65,7 +65,7 @@ function Chest:toSerializable()
local stackSer = v:toSerializable()
-- Skip all but the first homogeneous slot
if stackSer:isEmpty() then
if v:isEmpty() then
if skipEmpty then
goto continue
end