View source for Module:Inventory slot
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
-- List of special prefixes which should be handled by
-- other modules (such as being moved outside links)
p.prefixes = {
'Any',
'Matching',
'Damaged'
}
local function mergeList( parentTable, content )
if content[1] then
-- Merge list into table
for _, v in ipairs( content ) do
table.insert( parentTable, v )
end
else
-- Add strings or tables to table
table.insert( parentTable, content )
end
end
000
1:0
Templates used on this page:
- Template:Documentation header (view source)
- Template:Template link (view source)
- Template:Tl (view source)
- Template:Yesno (view source)
- Module:Documentation (view source)
- Module:Inventory slot/doc (view source)
- Module:ProcessArgs (view source)
- Module:Static (view source)
- Module:TSLoader (view source)
Return to Module:Inventory slot.