Whoops... *whistles*... say_team was compleatly and utterly... say.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@415 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-11-13 17:27:34 +00:00
parent a6fdafe6ee
commit a011c20348
1 changed files with 2 additions and 1 deletions

View File

@ -1957,6 +1957,7 @@ CL_Init
void CL_Init (void)
{
extern void CL_Say_f (void);
extern void CL_SayTeam_f (void);
extern cvar_t baseskin;
extern cvar_t noskins;
char st[80];
@ -2124,7 +2125,7 @@ void CL_Init (void)
Cmd_AddCommand ("pause", NULL);
Cmd_AddCommand ("say", CL_Say_f);
Cmd_AddCommand ("sayone", CL_Say_f);
Cmd_AddCommand ("say_team", CL_Say_f);
Cmd_AddCommand ("say_team", CL_SayTeam_f);
#ifdef CLIENTONLY
Cmd_AddCommand ("serverinfo", NULL);
#else