- realm sync shutdown, TimeAttack plugin won't be able to get other players DPS results, but nobody was using it anyway.

This commit is contained in:
Tercio
2016-08-07 17:09:51 -03:00
parent 4b69019468
commit da7838b9cd
+5 -3
View File
@@ -22,6 +22,8 @@
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--> constants
local CONST_REALM_SYNC_ENABLED = false
local CONST_DETAILS_PREFIX = "DTLS"
local CONST_HIGHFIVE_REQUEST = "HI"
@@ -551,7 +553,7 @@
--> entrar no canal após logar no servidor
function _detalhes:EnterChatChannel()
if (not _detalhes.realm_sync) then
if (not _detalhes.realm_sync or not CONST_REALM_SYNC_ENABLED) then
return
end
@@ -590,7 +592,7 @@
end
function _detalhes:LeaveChatChannel()
if (not _detalhes.realm_sync) then
if (not _detalhes.realm_sync or not CONST_REALM_SYNC_ENABLED) then
return
end
@@ -652,7 +654,7 @@
end
function _detalhes:CheckChatOnZoneChange()
if (not _detalhes.realm_sync) then
if (not _detalhes.realm_sync or not CONST_REALM_SYNC_ENABLED) then
return
end
_detalhes:ScheduleTimer ("DoZoneCheck", 2)