Skip to content

Commit

Permalink
RaidStatus library update to version 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Jul 5, 2021
1 parent ec4d1f0 commit 136fd22
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Libs/LibRaidStatus/LibRaidStatus.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

local major = "LibRaidStatus-1.0"
local CONST_LIB_VERSION = 17
local CONST_LIB_VERSION = 18
LIB_RAID_STATUS_CAN_LOAD = false

--declae the library within the LibStub
Expand Down Expand Up @@ -1344,7 +1344,6 @@ end)
--@data: table received from comm
--@source: player name
function raidStatusLib.playerInfoManager.OnReceivePlayerFullInfo(data, source)
--Details:Dump(data)
local specId = tonumber(data[1])
local renown = tonumber(data[2])
local covenantId = tonumber(data[3])
Expand All @@ -1353,7 +1352,7 @@ end)
local conduitsSize = data[conduitsTableIndex]

--unpack the talents data as a ipairs table
local talentsTableUnpacked = raidStatusLib.UnpackTable(data, 3, false, false, talentsSize)
local talentsTableUnpacked = raidStatusLib.UnpackTable(data, 4, false, false, talentsSize)

--unpack the conduits data as a ipairs table
local conduitsTableUnpacked = raidStatusLib.UnpackTable(data, conduitsTableIndex, false, false, conduitsSize)
Expand Down Expand Up @@ -1454,7 +1453,6 @@ function raidStatusLib.playerInfoManager.GetPlayerFullInfo()
end

--local link = C_Soulbinds.GetConduitHyperlink( conduitId, conduitRank )
--print(link)
end
end
end
Expand Down

0 comments on commit 136fd22

Please sign in to comment.