Changes
m
return toGrid("Aer", size)
return toGrid("Terra", size)
return toGrid("Ignis", size)
return toGrid("Aqua", size)
return toGrid("Ordo", size)
return toGrid("Perditio", size)
spacing knicknacks
function p.aspect(params)
local aspect = params.args.aspect
local size = params.args.stacksize -- defaults to 1 via the template
if aspect == "A" then
elseif aspect == "T" then
elseif aspect == "I" then
elseif aspect == "Aq" or aspect == "Q" then
elseif aspect == "O" then
elseif aspect == "P" then
else
return toGrid(aspect, size)
end
end