mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
fix quit not quitting on a dedicated server
This commit is contained in:
parent
f1423cb0b3
commit
337deae4ae
1 changed files with 1 additions and 1 deletions
|
@ -1333,7 +1333,7 @@ void
|
|||
Host_InitCommands (void)
|
||||
{
|
||||
Cmd_AddCommand ("status", Host_Status_f, "No Description");
|
||||
if (!con_module)
|
||||
if (!con_module || isDedicated)
|
||||
Cmd_AddCommand ("quit", Host_Quit_f, "No Description");
|
||||
Cmd_AddCommand ("god", Host_God_f, "No Description");
|
||||
Cmd_AddCommand ("notarget", Host_Notarget_f, "No Description");
|
||||
|
|
Loading…
Reference in a new issue