From 21a0d9edfd34ad4f129261c22adf0f5ace31ede6 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Sat, 18 Feb 2012 19:54:25 -0800 Subject: [PATCH] Re-add the necessary StartUp hack stuff. --- .../PubUtilLib/plNetClientComm/plNetClientComm.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp b/Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp index 57e0e7fb..41be9ca9 100644 --- a/Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp +++ b/Sources/Plasma/PubUtilLib/plNetClientComm/plNetClientComm.cpp @@ -768,6 +768,15 @@ void NetCommStartup () { // NetCliAuthSetRecvBufferHandler(INetBufferCallback); NetCliAuthSetNotifyNewBuildHandler(INotifyNewBuildCallback); NetCliAuthSetConnectCallback(INotifyAuthConnectedCallback); + + // Set startup age info + memset(&s_startupAge, 0, sizeof(s_startupAge)); + + StrCopy(s_iniStartupAgeName, L"StartUp", arrsize(s_iniStartupAgeName)); + StrCopy(s_startupAge.ageDatasetName, "StartUp", arrsize(s_startupAge.ageDatasetName)); + + s_startupAge.ageInstId = s_iniStartupAgeInstId; + StrCopy(s_startupAge.spawnPtName, "LinkInPointDefault", arrsize(s_startupAge.spawnPtName)); } //============================================================================