summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaeJong <mewiceclair@gmail.com>2017-05-07 19:19:04 +0200
committerMaeJong <mewiceclair@gmail.com>2017-05-08 06:21:30 +0200
commitac3129088270225cc2e32b5bf38639f03513e1b3 (patch)
treefed3e315ef12ce07edae2a69e5dd86e7962eb03c
parent40a6e9296da1a5662f2c2a978860f194cb9a4336 (diff)
Change high admin chat colour to red
-rw-r--r--src/game/g_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c
index 25a9eab..bcd51de 100644
--- a/src/game/g_cmds.c
+++ b/src/game/g_cmds.c
@@ -1176,7 +1176,7 @@ void G_Say( gentity_t *ent, gentity_t *target, int mode, const char *chatText )
G_LogPrintf( "say_hadmins: ^7[^1HIGH ADMIN^7]%s^7: %s^7\n", ( ent ) ? ent->client->pers.netname : "console", chatText );
Com_sprintf( name, sizeof( name ), "%s^7[^1HIGH ADMIN^7]%s%c%c"EC": ", prefix,
( ent ) ? ent->client->pers.netname : "console", Q_COLOR_ESCAPE, COLOR_WHITE );
- color = COLOR_WHITE;
+ color = COLOR_RED;
break;
}