From 320d992557dda0a930c54c2e3054e4ad91c05ec3 Mon Sep 17 00:00:00 2001 From: Darthpred Date: Sun, 13 Jul 2014 00:03:20 +0400 Subject: [PATCH] Found an error in nameplates --- ElvUI_SLE/modules/nameplates.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ElvUI_SLE/modules/nameplates.lua b/ElvUI_SLE/modules/nameplates.lua index 1f4ad2a..1b7d890 100644 --- a/ElvUI_SLE/modules/nameplates.lua +++ b/ElvUI_SLE/modules/nameplates.lua @@ -82,12 +82,12 @@ end) local function AddToRoster(unitId) local unitName = UnitName(unitId) if unitName then - self.GroupMembers[unitName] = unitId + NP.GroupMembers[unitName] = unitId end end local function UpdateRoster() - twipe(self.GroupMembers) + twipe(NP.GroupMembers) local groupSize = IsInRaid() and GetNumGroupMembers() or IsInGroup() and GetNumSubgroupMembers() or 0 local groupType = IsInRaid() and "raid" or IsInGroup() and "party" or "solo" -- 1.7.9.5