Module:Param Parse: Difference between revisions
m
Fix strict mode errors
(quest type) |
m (Fix strict mode errors) |
||
Line 278:
-- Release
local function unix_time(date)
-- Convert a time to unix time
if date == nil then
Line 602:
}
local function attack_style_func(style)
local attack_style = valid_attack_styles[string.lower(style or '')]
if attack_style then
Line 614:
end
local function attack_style_smw(style)
local attack_style = valid_attack_styles[string.lower(style or '')]
if attack_style then
|