Open main menu
Home
Random
Log in
Settings
About Melvor Idle
Disclaimers
Search
Module:Icons: Difference between revisions
Module
Discussion
← Older edit
Newer edit →
Module:Icons
(view source)
Revision as of 19:32, 28 June 2024
314 bytes removed
,
28 June
Remove unused SkillReq function
Revision as of 19:27, 28 June 2024
(
view source
)
Ricewind
(
talk
|
contribs
)
(Replace _SkillReq with function that handles both realms)
← Older edit
Revision as of 19:32, 28 June 2024
(
view source
)
Ricewind
(
talk
|
contribs
)
(Remove unused SkillReq function)
Newer edit →
Line 1,166:
Line 1,166:
text:wikitext(level)
text:wikitext(level)
return tostring(text)
return tostring(text)
end
function p.SkillReq(frame)
local args = frame.args ~= nil and frame.args or frame
local skill = args[1]
local level = tonumber(args[2])
local realmID = args[3]
local showText = args.showText ~= nil and args.showText ~= '' and args.showText ~= 'false'
return p._SkillReq(skill, level, showText, realmID)
end
end
Ricewind
2,875
edits