Bug fix
Scott Sibley [11-01-10 - 06:50]
diff --git a/Modules/Border/Border.lua b/Modules/Border/Border.lua
index ef7b812..8bd7f8a 100644
--- a/Modules/Border/Border.lua
+++ b/Modules/Border/Border.lua
@@ -21,10 +21,10 @@ local defaults = {
expression = [[
if not UnitExists(unit) then self:Stop(); return self.oldr, self.oldg, self.oldb end
if UnitIsPlayer(unit) then
- self.oldr, self.oldb, self.oldg = ClassColor(unit)
+ self.oldr, self.oldg, self.oldb = ClassColor(unit)
return ClassColor(unit)
else
- self.oldr, self.oldb, self.oldg = UnitSelectionColor(unit)
+ self.oldr, self.oldg, self.oldb = UnitSelectionColor(unit)
return UnitSelectionColor(unit)
end
]],