mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
[nq] Ensure stuffcmd is done for cl_quakerc 0
This was done years ago for qw, but missed for nq.
This commit is contained in:
parent
9fb337fac4
commit
87eccb9e6f
1 changed files with 1 additions and 1 deletions
|
@ -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-");
|
||||
|
|
Loading…
Reference in a new issue