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