Roman Hergenreder 6 years ago
parent
commit
696716606e
1 changed files with 3 additions and 2 deletions
  1. 3 2
      AutoQueueBG.lua

+ 3 - 2
AutoQueueBG.lua

@@ -193,8 +193,9 @@ function AutoQueueBG:BuffPlayers()
   for i = 1, 40 do -- For each raid member
     local unit = "raid" .. i
     if AutoQueueBG:CheckRaidMember(unit) then
-      if AutoQueueBG:BuffDuration(unit, GetSpellInfo(GSDK)) < 15 then
-        BuffPlayer(unit, GSDK)
+      local spellName = GetSpellInfo(GSDK_ID)
+      if AutoQueueBG:BuffDuration(unit, spellName) < 15 then
+        AutoQueueBG:BuffPlayer(unit, GSDK_ID)
         return;
       end
     end