From: havoc Date: Tue, 20 Aug 2002 19:54:39 +0000 (+0000) Subject: changed color command description to mention it is 0-15 range, not 0-13 X-Git-Tag: RELEASE_0_2_0_RC1~329 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0f0e0b6dd6444deca4c782bea586014676c776b5;p=xonotic%2Fdarkplaces.git changed color command description to mention it is 0-15 range, not 0-13 git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2264 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host_cmd.c b/host_cmd.c index 7a6fd9b5..507188bf 100644 --- a/host_cmd.c +++ b/host_cmd.c @@ -847,11 +847,11 @@ void Host_Color_f(void) int playercolor; dfunction_t *f; func_t SV_ChangeTeam; - + if (Cmd_Argc() == 1) { Con_Printf ("\"color\" is \"%i %i\"\n", cl_color.integer >> 4, cl_color.integer & 15); - Con_Printf ("color <0-13> [0-13]\n"); + Con_Printf ("color <0-15> [0-15]\n"); return; }