- Custom display 'My Spells' now get the player role from the current spec the character is using.
- Framework: table copy won't try to copy '__index' meta table.
This commit is contained in:
@@ -43,6 +43,8 @@
|
||||
local CONST_CLOUD_DATARC = "CE"
|
||||
local CONST_CLOUD_EQUALIZE = "EQ"
|
||||
|
||||
local CONST_CLOUD_SHAREDATA = "SD"
|
||||
|
||||
local CONST_PVP_ENEMY = "PP"
|
||||
|
||||
local CONST_ROGUE_SR = "SR" --soul rip from akaari's soul (LEGION ONLY)
|
||||
@@ -65,6 +67,8 @@
|
||||
["PVP_ENEMY"] = CONST_PVP_ENEMY,
|
||||
|
||||
["MISSDATA_ROGUE_SOULRIP"] = CONST_ROGUE_SR, --soul rip from akaari's soul (LEGION ONLY)
|
||||
|
||||
["CLOUD_SHAREDATA"] = CONST_CLOUD_SHAREDATA,
|
||||
}
|
||||
|
||||
local plugins_registred = {}
|
||||
@@ -343,6 +347,19 @@
|
||||
end
|
||||
end
|
||||
|
||||
--received an entire segment data from a user that is sharing with the 'player'
|
||||
function _detalhes.network.Cloud_SharedData (player, realm, core_version, data)
|
||||
|
||||
if (core_version ~= _detalhes.realversion) then
|
||||
if (core_version > _detalhes.realversion) then
|
||||
--_detalhes:Msg ("your Details! is out dated and cannot perform the action, please update it.")
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
|
||||
end
|
||||
|
||||
--guild sync R = someone pressed the sync button
|
||||
--guild sync L = list of fights IDs
|
||||
--guild sync G = requested a list of encounters
|
||||
|
||||
Reference in New Issue
Block a user