diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-05-11 17:03:30 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-05-11 17:03:30 +0100 |
commit | bd4119d0d70567325e7e979a3305f6d631c98dad (patch) | |
tree | abdc1f5121042547e0059d17ec218001126100d6 /NorthstarDedicatedTest/dedicated.cpp | |
parent | 8205f96ceb7da38c15ef6f1af30ea1bbbeede1bf (diff) | |
download | NorthstarLauncher-bd4119d0d70567325e7e979a3305f6d631c98dad.tar.gz NorthstarLauncher-bd4119d0d70567325e7e979a3305f6d631c98dad.zip |
make cvar print work on dedi, move demo fix stuff, add findflags
Diffstat (limited to 'NorthstarDedicatedTest/dedicated.cpp')
-rw-r--r-- | NorthstarDedicatedTest/dedicated.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/dedicated.cpp b/NorthstarDedicatedTest/dedicated.cpp index 280a9889..2df43fe9 100644 --- a/NorthstarDedicatedTest/dedicated.cpp +++ b/NorthstarDedicatedTest/dedicated.cpp @@ -8,6 +8,7 @@ #include "hoststate.h" #include "serverauthentication.h" #include "masterserver.h" +#include "commandprint.h" using namespace Tier0; using namespace R2; @@ -125,6 +126,7 @@ DWORD WINAPI ConsoleInputThread(PVOID pThreadParameter) { input += "\n"; Cbuf_AddText(Cbuf_GetCurrentPlayer(), input.c_str(), cmd_source_t::kCommandSrcCode); + TryPrintCvarHelpForCommand(input.c_str()); } } |