Bureaucrats, emailconfirmed, Interface administrators, staff, Administrators, translation-admin, translator, Widget editors
154
edits
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
p = {} | p = {} | ||
function Grid(args, w, h) | function Grid(args, w, h, large) | ||
return require([[Module:InventorySlot]]).Call(args,w,h) | return require([[Module:InventorySlot]]).Call(args,w,h,large) | ||
end | end | ||
Line 21: | Line 21: | ||
return Grid(args, 1, 1) | return Grid(args, 1, 1) | ||
end | |||
function p.BigCell( f ) | |||
local args = f.args | |||
if #args == 0 then | |||
args = f:getParent().args | |||
end | |||
return Grid(args, 1, 1, true) | |||
end | end | ||
edits