Editing Module:Param Parse
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 532: | Line 532: | ||
local level_valid = parse.number(level) |
local level_valid = parse.number(level) |
||
local profession_valid = parse.has_content(profession) |
local profession_valid = parse.has_content(profession) |
||
local profession_valid_link = profession_valid |
|||
if not profession_valid and not level_valid then |
if not profession_valid and not level_valid then |
||
Line 549: | Line 548: | ||
end |
end |
||
return '[[File:'..profession_valid..'_icon.png|link='.. |
return '[[File:'..profession_valid..'_icon.png|link='..profession_valid..'|width=18x18]] '..level_valid |
||
end |
end |
||