Quantcast

Fix spurious "nil" in debugging message output.

Johnny C. Lam [12-05-13 - 08:18]
Fix spurious "nil" in debugging message output.

git-svn-id: svn://svn.curseforge.net/wow/ovale/mainline/trunk@1233 d5049fe3-3747-40f7-a4b5-f36d6801af5f
Filename
OvaleAura.lua
diff --git a/OvaleAura.lua b/OvaleAura.lua
index fdd9521..3c71d1a 100644
--- a/OvaleAura.lua
+++ b/OvaleAura.lua
@@ -266,7 +266,7 @@ function OvaleAura:COMBAT_LOG_EVENT_UNFILTERED(event, ...)
 			aura.ticksSeen = ticksSeen
 			aura.lastTickTime = timestamp
 			local name = aura.name or "Unknown spell"
-			Ovale:DebugPrintf(OVALE_AURA_DEBUG, "Updating %s %s (%s) on %s, tick=%f", filter, name, spellId, destGUID, tick)
+			Ovale:DebugPrintf(OVALE_AURA_DEBUG, "Updating %s (%s) on %s, tick=%f", name, spellId, destGUID, tick)
 		end
 	end
 end