mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 09:22:43 +00:00
make Cmd_StuffCmds_f get called if cl_quakerc is 0
This commit is contained in:
parent
de83dfb587
commit
1757dfcc75
1 changed files with 1 additions and 1 deletions
|
@ -1670,7 +1670,7 @@ Host_Init (void)
|
|||
Cmd_Exec_File (fs_usercfg->string);
|
||||
// Reparse the command line for + commands.
|
||||
// (Note, no non-base commands exist yet)
|
||||
if (cl_quakerc->int_val && check_quakerc ())
|
||||
if (!cl_quakerc->int_val || check_quakerc ())
|
||||
Cmd_StuffCmds_f ();
|
||||
|
||||
Cbuf_AddText ("echo Type connect <internet address> or use a server "
|
||||
|
|
Loading…
Reference in a new issue