summaryrefslogtreecommitdiffhomepage
path: root/src/ffluci/util.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/ffluci/util.lua')
-rw-r--r--src/ffluci/util.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ffluci/util.lua b/src/ffluci/util.lua
index 38f33a20d..caa8e41de 100644
--- a/src/ffluci/util.lua
+++ b/src/ffluci/util.lua
@@ -156,12 +156,12 @@ end
-- Validates a variable
-function validate(value, cast_number, cast_int, valid)
+function validate(value, valid, cast_number, cast_int)
if cast_number or cast_int then
value = tonumber(value)
end
- if cast_int and not(value % 1 == 0) then
+ if cast_int and value and not(value % 1 == 0) then
value = nil
end