Quantcast

Fixed GetSpellInfo calls

Taracque [10-16-14 - 08:56]
Fixed GetSpellInfo calls
Filename
Elementarist.lua
diff --git a/Elementarist.lua b/Elementarist.lua
index 00ef560..0558dc5 100755
--- a/Elementarist.lua
+++ b/Elementarist.lua
@@ -873,7 +873,7 @@ function Elementarist:DecideSpells()
 		end
 		Elementarist:SetTexture(Elementarist.textureList["next"],GetSpellTexture(spell))

-		local _,_,_,_,_,_,ct1=GetSpellInfo(spell)
+		local _,_,_,ct1=GetSpellInfo(spell)
 		if (not ct1) then
 			ct1 = 0
 		else
@@ -882,7 +882,7 @@ function Elementarist:DecideSpells()
 		local spell1 = Elementarist:NextSpell(ct1,spell)
 		Elementarist:SetTexture(Elementarist.textureList["next1"],GetSpellTexture(spell1))

-		local _,_,_,_,_,_,ct2=GetSpellInfo(spell1)
+		local _,_,_,ct2=GetSpellInfo(spell1)
 		if (not ct2) then
 			ct2 = 0
 		else