Fix ActivityIDs of Dragonflight Season 1 dungeons
0xbs opened this issue ยท 0 comments
Issue
According to the Dragonflight Season 1 and Raid Schedule, Shadowmoon Burial Grounds and Temple of the Jade Serpent will be part of the Season 1 Mythic+ dungeon rotation. However, we do not yet know the activityID
of those two dungeons. SBG could be 185
, but still has challenge mode in the name. TotJS does not yet exist.
Affected Files
https://github.com/0xbs/premade-groups-filter/blob/master/Main.lua#L535-L538
https://github.com/0xbs/premade-groups-filter/blob/master/Modules/PlayerInfo.lua#L50-L51
Scan IDs
/run for i=1,5000 do local info = C_LFGList.GetActivityInfoTable(i); if info and info.fullName:find("Burial") then print(i, info.fullName) end end
/run for i=1,5000 do local info = C_LFGList.GetActivityInfoTable(i); if info and info.fullName:find("Jade") then print(i, info.fullName) end end