Fixed an issue with the command /keys
This commit is contained in:
@@ -19,8 +19,8 @@
|
||||
local addonName, Details222 = ...
|
||||
local version = GetBuildInfo()
|
||||
|
||||
Details.build_counter = 12823
|
||||
Details.alpha_build_counter = 12823 --if this is higher than the regular counter, use it instead
|
||||
Details.build_counter = 12824
|
||||
Details.alpha_build_counter = 12824 --if this is higher than the regular counter, use it instead
|
||||
Details.dont_open_news = true
|
||||
Details.game_version = version
|
||||
Details.userversion = version .. " " .. Details.build_counter
|
||||
|
||||
+12
-1
@@ -2219,6 +2219,17 @@ if (WOW_PROJECT_ID == WOW_PROJECT_MAINLINE) then
|
||||
newData.offlineGuildPlayers = {}
|
||||
local keystoneData = openRaidLib.GetAllKeystonesInfo()
|
||||
|
||||
--[=[
|
||||
["Exudragão"] = {
|
||||
["mapID"] = 2526,
|
||||
["challengeMapID"] = 402,
|
||||
["mythicPlusMapID"] = 0,
|
||||
["rating"] = 215,
|
||||
["classID"] = 13,
|
||||
["level"] = 6,
|
||||
},
|
||||
--]=]
|
||||
|
||||
local guildUsers = {}
|
||||
local totalMembers, onlineMembers, onlineAndMobileMembers = GetNumGuildMembers()
|
||||
|
||||
@@ -2260,7 +2271,7 @@ if (WOW_PROJECT_ID == WOW_PROJECT_MAINLINE) then
|
||||
local coords = CLASS_ICON_TCOORDS
|
||||
local _, class = GetClassInfo(classId)
|
||||
|
||||
local mapName = LFGGetDungeonInfoByID(keystoneInfo.mythicPlusMapID) or ""
|
||||
local mapName = LFGGetDungeonInfoByID(keystoneInfo.mythicPlusMapID) or "map name not found"
|
||||
|
||||
--local mapInfoChallenge = C_Map.GetMapInfo(keystoneInfo.challengeMapID)
|
||||
--local mapNameChallenge = mapInfoChallenge and mapInfoChallenge.name or ""
|
||||
|
||||
Reference in New Issue
Block a user