Fixed a bug that pops up when you're a ghost.
Scott Sibley [09-01-10 - 06:42]
Fixed a bug that pops up when you're a ghost.
diff --git a/Modules/Text.lua b/Modules/Text.lua
index 1a14e58..d91b8d1 100644
--- a/Modules/Text.lua
+++ b/Modules/Text.lua
@@ -230,7 +230,7 @@ elseif UnitIsFeignDeath("mouseover") then
return "Feigned Death"
elseif UnitIsGhost("mouseover") then
return "Ghost"
-elseif UnitIsDead("mouseover") and unitHasAura(self.GetSpellInfo(20707)) then
+elseif UnitIsDead("mouseover") and unitHasAura(GetSpellInfo(20707)) then
return "Soulstoned"
elseif UnitIsDead("mouseover") then
return "Dead"