We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 494718f commit 8369b44Copy full SHA for 8369b44
src/Modules/ModTools.lua
@@ -59,6 +59,10 @@ function modLib.parseTags(line)
59
if tag ~= "" then
60
local tagName, tagValue = tag:match("^(%a+)=(.+)")
61
if tagName then
62
+ -- list of all the tag parts that should be numbers
63
+ if ({threshold = true})[tagName] then
64
+ tagValue = tonumber(tagValue)
65
+ end
66
tagSet[tagName] = tagValue == "true" and true or tagValue
67
else
68
ConPrintf("Error tag invalid: "..tag)
0 commit comments