Merge pull request #831 from Blizzard/fix-options
Fix in oven, for options that are not strings.
This commit is contained in:
commit
b77e5763f6
@ -71,7 +71,7 @@
|
||||
for key, value in pairs(_OPTIONS) do
|
||||
local term = key
|
||||
if value ~= "" then
|
||||
term = term .. "=" .. value
|
||||
term = term .. "=" .. tostring(value)
|
||||
end
|
||||
table.insert(options, term)
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user