]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Make sure the server<->client interpreters run.
authorcloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 20 May 2020 15:22:06 +0000 (15:22 +0000)
committercloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 20 May 2020 15:22:06 +0000 (15:22 +0000)
This will help fix QW connections but a few more fixes will be needed.

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12545 d7cf8633-e32d-0410-b094-e92efae38249

host.c

diff --git a/host.c b/host.c
index 78b87dde59ac03ab9ef6972bfc7b5aa57cd51cf5..20a4b4392ab0b418b51dc1941e4cccbfa31db061 100644 (file)
--- a/host.c
+++ b/host.c
@@ -783,6 +783,17 @@ void Host_Main(void)
                        CL_VM_PreventInformationLeaks();
                        Cbuf_Frame(&cmd_client);
                        Cbuf_Frame(&cmd_server);
+
+                       if(sv.active)
+                       {
+                               Cbuf_Frame(&cmd_serverfromclient);
+                       }
+
+                       if(cls.netcon)
+                       {
+                               Cbuf_Frame(&cmd_clientfromserver);
+                       }
+
 //                     R_TimeReport("console");
                }