diff --git a/api/spell.lua b/api/spell.lua index 83d40fe9..5b714522 100644 --- a/api/spell.lua +++ b/api/spell.lua @@ -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, "(.+)-(.+)")