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 c6ac1b5b..1005c6f1 100644
--- a/src/game/g_cmds.c
+++ b/src/game/g_cmds.c
@@ -925,13 +925,13 @@ void G_Say( gentity_t *ent, saymode_t mode, const char *chatText )
case SAY_TEAM:
// console say_team is handled in g_svscmds, not here
if( !ent || !ent->client )
- Com_Error( ERR_FATAL, "SAY_TEAM by non-client entity\n" );
+ Com_Error( ERR_FATAL, "SAY_TEAM by non-client entity" );
G_LogPrintf( "SayTeam: %d \"%s" S_COLOR_WHITE "\": " S_COLOR_CYAN "%s\n",
(int)( ent - g_entities ), ent->client->pers.netname, chatText );
break;
case SAY_RAW:
if( ent )
- Com_Error( ERR_FATAL, "SAY_RAW by client entity\n" );
+ Com_Error( ERR_FATAL, "SAY_RAW by client entity" );
G_LogPrintf( "Chat: -1 \"console\": %s\n", chatText );
default:
break;
@@ -1037,7 +1037,7 @@ void Cmd_VSay_f( gentity_t *ent )
weapon_t weapon;
if( !ent || !ent->client )
- Com_Error( ERR_FATAL, "Cmd_VSay_f() called by non-client entity\n" );
+ Com_Error( ERR_FATAL, "Cmd_VSay_f() called by non-client entity" );
trap_Argv( 0, arg, sizeof( arg ) );
if( trap_Argc( ) < 2 )