aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/dllmain.cpp
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-12-26 05:22:33 +0000
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-12-26 05:22:33 +0000
commitce6127ae96022ce6e803a876a2e39eed7bd754ea (patch)
tree606a902a6fc976c35da64d3a292ebac7e11fe62d /NorthstarDedicatedTest/dllmain.cpp
parent3296aeae3cc035cfc20b9c7da40f7c5690e92daa (diff)
downloadNorthstarLauncher-ce6127ae96022ce6e803a876a2e39eed7bd754ea.tar.gz
NorthstarLauncher-ce6127ae96022ce6e803a876a2e39eed7bd754ea.zip
fix potentially unsafe concommand
Diffstat (limited to 'NorthstarDedicatedTest/dllmain.cpp')
-rw-r--r--NorthstarDedicatedTest/dllmain.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp
index 212b5711..78edb297 100644
--- a/NorthstarDedicatedTest/dllmain.cpp
+++ b/NorthstarDedicatedTest/dllmain.cpp
@@ -24,6 +24,7 @@
#include "scriptbrowserhooks.h"
#include "scriptmainmenupromos.h"
#include "miscclientfixes.h"
+#include "miscserverfixes.h"
#include "memalloc.h"
bool initialised = false;
@@ -110,6 +111,7 @@ void InitialiseNorthstar()
AddDllLoadCallback("engine.dll", InitialiseServerAuthentication);
AddDllLoadCallback("engine.dll", InitialiseSharedMasterServer);
AddDllLoadCallback("server.dll", InitialiseMiscServerScriptCommand);
+ AddDllLoadCallback("server.dll", InitialiseMiscServerFixes);
AddDllLoadCallback("engine.dll", InitialisePlaylistHooks);