diff options
Diffstat (limited to 'NorthstarDedicatedTest/dllmain.cpp')
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp index cb3477e0..bc1bfd77 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -20,7 +20,7 @@ #include "modlocalisation.h" #include "playlist.h" #include "securitypatches.h" -#include "serverscriptpersistence.h" +#include "miscserverscript.h" bool initialised = false; @@ -66,6 +66,7 @@ void InitialiseNorthstar() AddDllLoadCallback("engine.dll", WaitForDebugger); AddDllLoadCallback("engine.dll", InitialiseEngineGameUtilFunctions); + AddDllLoadCallback("server.dll", InitialiseServerGameUtilFunctions); AddDllLoadCallback("engine.dll", InitialiseEngineSpewFuncHooks); // dedi patches @@ -92,7 +93,7 @@ void InitialiseNorthstar() AddDllLoadCallback("server.dll", InitialiseServerSquirrel); AddDllLoadCallback("engine.dll", InitialiseServerAuthentication); AddDllLoadCallback("engine.dll", InitialiseSharedMasterServer); - AddDllLoadCallback("server.dll", InitialiseServerScriptPersistence); + AddDllLoadCallback("server.dll", InitialiseMiscServerScriptCommand); AddDllLoadCallback("engine.dll", InitialisePlaylistHooks); |