Skip to content

Commit

Permalink
Get rid of more indent markers.
Browse files Browse the repository at this point in the history
  • Loading branch information
enneract committed Dec 5, 2015
1 parent f99fa96 commit 6c79e8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/cgame/cg_servercmds.c
Expand Up @@ -1021,10 +1021,10 @@ static void CG_Say( int clientNum, saymode_t mode, const char *text )
break;
case SAY_ADMINS:
case SAY_ADMINS_PUBLIC:
CG_Printf( "%s%s%s" S_COLOR_WHITE "%s %c" S_COLOR_MAGENTA "%s\n",
CG_Printf( "%s%s%s" S_COLOR_WHITE "%s " S_COLOR_MAGENTA "%s\n",
prefix,
( mode == SAY_ADMINS ) ? "[ADMIN]" : "[PLAYER]",
name, maybeColon, INDENT_MARKER, text );
name, maybeColon, text );
break;
case SAY_AREA:
CG_Printf( "%s<%s" S_COLOR_WHITE ">%s%s " S_COLOR_BLUE "%s\n",
Expand Down
4 changes: 2 additions & 2 deletions src/game/g_admin.c
Expand Up @@ -2483,14 +2483,14 @@ qboolean cp_broadcast( gentity_t *ent, qboolean cp ) {
if( !admin )
trap_SendServerCommand( i, va( "cp \"^%s%s\"",
( team < 0 ) ? "2" : "5", message ) );
trap_SendServerCommand( i, va( "print \"%s^3CPA: ^7%s%s^7%s%s%s: %c%s\n\"",
trap_SendServerCommand( i, va( "print \"%s^3CPA: ^7%s%s^7%s%s%s: %s\n\"",
( admin ) ? "[ADMIN] " : "",
( team >= 0 ) ? "(" : "",
admin_name( ent ),
( team >= 0 ) ? ")" : "",
( admin ) ? " to " : "",
( admin ) ? BG_TeamName( team ) : "",
INDENT_MARKER,

message ) );
}
else if( !admin )
Expand Down

0 comments on commit 6c79e8b

Please sign in to comment.