Module:Param Parse: Difference between revisions
no edit summary
No edit summary |
No edit summary |
||
Line 353:
end
function parse.difficulty_smw(val)
if val == 'N/A' then
return -1
end
val = tonumber(val) -- Intentionally do not use parse.tonumber here
if val == nil then
|