diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-01-09 03:29:56 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-01-09 03:29:56 +0000 |
commit | 99d58d760032ff89ff91df9afc58e23b50c011b9 (patch) | |
tree | 9a76211e31cc16366fc44fb7c07ef705231b5793 /NorthstarDedicatedTest/serverauthentication.cpp | |
parent | 2d31b6857683719e38d05052a11e1eff67807df9 (diff) | |
download | NorthstarLauncher-99d58d760032ff89ff91df9afc58e23b50c011b9.tar.gz NorthstarLauncher-99d58d760032ff89ff91df9afc58e23b50c011b9.zip |
restrict netchan limit checks to serverside calls only
Diffstat (limited to 'NorthstarDedicatedTest/serverauthentication.cpp')
-rw-r--r-- | NorthstarDedicatedTest/serverauthentication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDedicatedTest/serverauthentication.cpp b/NorthstarDedicatedTest/serverauthentication.cpp index da84280c..4e3446c2 100644 --- a/NorthstarDedicatedTest/serverauthentication.cpp +++ b/NorthstarDedicatedTest/serverauthentication.cpp @@ -342,7 +342,7 @@ char __fastcall CNetChan___ProcessMessagesHook(void* self, void* buf) char ret = CNetChan___ProcessMessages(self, buf); // check processing limits, unless we're in a level transition - if (g_pHostState->m_iCurrentState == HostState_t::HS_RUN) + if (g_pHostState->m_iCurrentState == HostState_t::HS_RUN && ThreadInServerFrameThread()) { // player that sent the message void* sender = *(void**)((char*)self + 368); |