5e453fc - Optimize CheckIndicators
[wowui.git] / OmaRF / PaladinIndicators.lua
index fdb5950..762a525 100644 (file)
@@ -3,15 +3,14 @@ local pairs = pairs;
 
 local indSize = OmaRFSettings.IndSize;
 local rhomb = "Interface\\AddOns\\OmaRF\\images\\rhomb";
-local positions = {"TOPRIGHT", "BOTTOMLEFT"};
 
 local M = {};
 OmaRFIndicators.Class["PALADIN"] = M;
 M.Auras = {
-    [53563] = "TOPRIGHT", -- Beacon of Light
-    [156910] = "TOPRIGHT", -- Beacon of Faith
-    [200025] = "TOPRIGHT", -- Beacon of Virtue
-    [200654] = "BOTTOMLEFT", -- Tyr's Deliverance
+    ["Beacon of Light"] = "TOPRIGHT",
+    ["Beacon of Faith"] = "TOPRIGHT",
+    ["Beacon of Virtue"] = "TOPRIGHT",
+    ["Tyr's Deliverance"] = "BOTTOMLEFT",
 }
 
 function M.Setup(base)