Skip to content
Snippets Groups Projects
Commit 61b0c24c authored by SteelT's avatar SteelT
Browse files

Fix "unknown command" not being printed on dedicated

parent 55854410
No related branches found
No related tags found
1 merge request!1771Fix "unknown command" not being printed on dedicated
......@@ -660,7 +660,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));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment