mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 03:51:50 +00:00
Fix "unknown command" not being printed on dedicated
This commit is contained in:
parent
39097e7433
commit
236394f639
1 changed files with 1 additions and 1 deletions
|
|
@ -730,7 +730,7 @@ static void COM_ExecuteString(char *ptext)
|
|||
// check cvars
|
||||
// Hurdler: added at Ebola's request ;)
|
||||
// (don't flood the console in software mode with bad gl_xxx command)
|
||||
if (!CV_Command() && con_destlines)
|
||||
if (!CV_Command() && (con_destlines || dedicated))
|
||||
CONS_Printf(M_GetText("Unknown command '%s'\n"), COM_Argv(0));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue