Skip to content

Commit 7194df1

Browse files
committed
Fixing raid debuffs not detectect in Pandaria (CF issue #1351)
1 parent 9b3cbee commit 7194df1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

RaidDebuffs/Grid2RaidDebuffs.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ local ipairs = ipairs
1010
local strfind = strfind
1111
local GetTime = GetTime
1212
local UnitGUID = UnitGUID
13-
local isClassic = Grid2.isClassic
13+
local isClassic = Grid2.versionCli<50000 -- for this module MoP is not considered classic because supports EncounterJournal IDs
1414
local UnitAura = Grid2.API.UnitAuraLite
1515

1616
local GetSpellInfo = Grid2.API.GetSpellInfo

RaidDebuffsOptions/OptionsAdvanced.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ do
531531
end
532532
}
533533

534-
if not isClassic then
534+
if Grid2.versionCli>=50000 then -- MoP or superior
535535
options.link = {
536536
type = "execute",
537537
order = 20,

0 commit comments

Comments
 (0)