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 279: | Line 279: | ||
-- Release |
-- Release |
||
function unix_time(date) |
|||
-- Convert a time to unix time |
-- Convert a time to unix time |
||
if date == nil then |
if date == nil then |
||
Line 607: | Line 607: | ||
} |
} |
||
function attack_style_func(style) |
|||
local attack_style = valid_attack_styles[string.lower(style or '')] |
local attack_style = valid_attack_styles[string.lower(style or '')] |
||
if attack_style then |
if attack_style then |
||
Line 619: | Line 619: | ||
end |
end |
||
function attack_style_smw(style) |
|||
local attack_style = valid_attack_styles[string.lower(style or '')] |
local attack_style = valid_attack_styles[string.lower(style or '')] |
||
if attack_style then |
if attack_style then |