From 87eccb9e6f7e67b52289b7e49f76328a41d70684 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 11 Apr 2021 20:09:03 +0900 Subject: [PATCH] [nq] Ensure stuffcmd is done for cl_quakerc 0 This was done years ago for qw, but missed for nq. --- nq/source/host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nq/source/host.c b/nq/source/host.c index ac13143e7..6f815ebf9 100644 --- a/nq/source/host.c +++ b/nq/source/host.c @@ -931,7 +931,7 @@ Host_Init (void) Cmd_Exec_File (host_cbuf, fs_usercfg->string, 0); // reparse the command line for + commands other than set // (sets still done, but it doesn't matter) - if (isDedicated || (cl_quakerc->int_val && check_quakerc ())) + if (isDedicated || !cl_quakerc->int_val || check_quakerc ()) Cmd_StuffCmds (host_cbuf); Hunk_AllocName (0, "-HOST_HUNKLEVEL-");