From 5009441d4dff20e05fe34d6013ef2087cd877a87 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Wed, 21 Dec 2016 19:48:51 +0000 Subject: [PATCH] maybe this is the culprit --- .../serverScript/src/shared/ScriptMethodsObjectInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/server/library/serverScript/src/shared/ScriptMethodsObjectInfo.cpp b/engine/server/library/serverScript/src/shared/ScriptMethodsObjectInfo.cpp index 976c1557..4729641f 100755 --- a/engine/server/library/serverScript/src/shared/ScriptMethodsObjectInfo.cpp +++ b/engine/server/library/serverScript/src/shared/ScriptMethodsObjectInfo.cpp @@ -3389,10 +3389,10 @@ jboolean JNICALL ScriptMethodsObjectInfoNamespace::sendScriptVarsToProxies(JNIEn uint32 const myProcessId = GameServer::getInstance().getProcessId(); uint32 const authProcessId = object->getAuthServerProcessId(); - ProxyList syncServers(proxyList); + ProxyList syncServers; //(proxyList); if (myProcessId != authProcessId) { - syncServers.erase(myProcessId); + //syncServers.erase(myProcessId); syncServers.insert(authProcessId); }