Module:If empty: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
mNo edit summary
mNo edit summary
Line 4: Line 4:
for i=1,9,1 do
for i=1,9,1 do
if frame.args[tostring(i)] ~= nil and frame.args[tostring(i)] ~= '' then
if frame.args[tostring(i)] ~= nil and frame.args[tostring(i)] ~= '' then
return args[tostring(i)]
return frame.args[tostring(i)]
end
end
end
end