summaryrefslogtreecommitdiff
path: root/src/game/g_cmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/g_cmds.c')
-rw-r--r--src/game/g_cmds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c
index 4f5159dd..b0f1bdd1 100644
--- a/src/game/g_cmds.c
+++ b/src/game/g_cmds.c
@@ -728,9 +728,9 @@ void G_Say( gentity_t *ent, gentity_t *target, int mode, const char *chatText )
( ent ) && ( ent->client->pers.teamSelection == TEAM_NONE ) &&
( !G_admin_permission( ent, ADMF_NOCENSORFLOOD ) ) )
{
- trap_SendServerCommand( ent-g_entities, va( "print \"Global chatting for "
- "spectators has been disabled. You may only use team chat.\n\"") );
- return;
+ trap_SendServerCommand( ent-g_entities, "print \"say: Global chatting for "
+ "spectators has been disabled. You may only use team chat.\n\"" );
+ mode = SAY_TEAM;
}
switch( mode )