From: havoc Date: Fri, 6 May 2005 20:01:55 +0000 (+0000) Subject: hush "Unknown command" warnings during startup X-Git-Tag: xonotic-v0.1.0preview~4939 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=07bb8dfd848ac2d25466809c4e24d81769380c47;p=xonotic%2Fdarkplaces.git hush "Unknown command" warnings during startup git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5240 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cmd.c b/cmd.c index 6e829984..40d1b72d 100644 --- a/cmd.c +++ b/cmd.c @@ -840,7 +840,7 @@ void Cmd_ExecuteString (const char *text, cmd_source_t src) } // check cvars - if (!Cvar_Command ()) + if (!Cvar_Command () && host_framecount > 0) Con_Printf("Unknown command \"%s\"\n", Cmd_Argv(0)); cmd_tokenizebufferpos = oldpos;