From d23a5a8ad9808df4a18b8db7ff64face3af3ef8e Mon Sep 17 00:00:00 2001 From: cloudwalk Date: Wed, 20 May 2020 15:22:06 +0000 Subject: [PATCH] Make sure the server<->client interpreters run. 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 | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/host.c b/host.c index 78b87dde..20a4b439 100644 --- 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"); } -- 2.39.2