We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f230a0 commit 51205c5Copy full SHA for 51205c5
1 file changed
modtools/create-item.lua
@@ -83,7 +83,7 @@ local function moveToBag(itemsToBag, creator)
83
-- Use BAG item type, NOT BOX. BOX creates chests/coffers (item_boxst),
84
-- BAG creates actual bags (item_bagst) for holding powder/seeds.
85
local bagType = dfhack.items.findType('BAG:NONE')
86
- local bags = {dfhack.items.createItem(creator, bagType, -1, containerMat.type, containerMat.index)}
+ local bags = dfhack.items.createItem(creator, bagType, -1, containerMat.type, containerMat.index)
87
if not bags[1] then
88
return items_list
89
end
0 commit comments