api: fix bad if-condition and tonumber usage

This commit is contained in:
shagu
2018-05-26 12:55:12 +02:00
parent 17a2108253
commit c697218b55
+1 -3
View File
@@ -109,9 +109,7 @@ function pfUI.api.GetSpellInfo(index, bookType)
local _, _, min = string.find(text:GetText(), gsub(SPELL_CAST_TIME_MIN, "%%.3g", "%(.+%)"))
local _, _, range = string.find(text:GetText(), gsub(SPELL_RANGE, "%%s", "%(.+%)"))
if sec or min then
castingTime = sec and tonumber(sec) * 1000 or tonumber(min) * 1000
end
castingTime = tonumber((sec or min or 0)) * 1000
if range then
local _, _, min, max = string.find(range, "(.+)-(.+)")