Skip to content

Commit

Permalink
libspell: return spell book id and its book-type
Browse files Browse the repository at this point in the history
  • Loading branch information
dsidirop authored Jun 1, 2024
1 parent 7e0990c commit a45c9f3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions libs/libspell.lua
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,12 @@ end
-- [number] Casting time of the spell in milliseconds
-- [number] Minimum range from the target required to cast the spell
-- [number] Maximum range from the target at which you can cast the spell
-- [number] The numeric spell-id of the spell
-- [number] The type of the spellbook that the spell is in
local spellinfo = {}
function libspell.GetSpellInfo(index, bookType)
local cache = spellinfo[index]
if cache then return cache[1], cache[2], cache[3], cache[4], cache[5], cache[6] end
if cache then return cache[1], cache[2], cache[3], cache[4], cache[5], cache[6], cache[7], cache[8] end

local name, rank, id
local icon = ""
Expand Down Expand Up @@ -131,8 +133,8 @@ function libspell.GetSpellInfo(index, bookType)
end
end

spellinfo[index] = { name, rank, icon, castingTime, minRange, maxRange }
return name, rank, icon, castingTime, minRange, maxRange
spellinfo[index] = { name, rank, icon, castingTime, minRange, maxRange, id, bookType }
return name, rank, icon, castingTime, minRange, maxRange, id, bookType
end

-- Reset all spell caches whenever new spells are learned/unlearned
Expand Down

0 comments on commit a45c9f3

Please sign in to comment.