From ea8335a4b1bb9dce58b37c8062ac7427ec3e2b41 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Wed, 21 Oct 2009 08:16:06 +0000 Subject: * More consistency in build/decon message colorcodes --- src/game/g_buildable.c | 4 ++-- src/game/g_combat.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/game') diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index 36f17b66..eb251ca0 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -3725,9 +3725,9 @@ static gentity_t *G_Build( gentity_t *builder, buildable_t buildable, vec3_t ori va( "print \"%s ^2built^7 by %s%s%s\n\"", BG_Buildable( built->s.modelindex )->humanName, builder->client->pers.netname, - ( removed[0] ) ? "^7, replacing " : "", + ( removed[0] ) ? "^7, ^3replacing^7 " : "", removed ) ); - G_LogPrintf( "Build: %d %d %d: %s^7 is building %s\n", + G_LogPrintf( "Build: %d %d %d: %s^7 is ^2building^7 %s\n", builder->client->ps.clientNum, built->s.modelindex, level.numBuildablesForRemoval, diff --git a/src/game/g_combat.c b/src/game/g_combat.c index 7f71066c..e603e719 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -1375,14 +1375,14 @@ void G_LogDestruction( gentity_t *self, gentity_t *actor, int mod ) } if( mod == MOD_DECONSTRUCT || mod == MOD_REPLACE ) - G_LogPrintf( "Decon: %d %d %d: %s^7 deconstructed %s\n", + G_LogPrintf( "Decon: %d %d %d: %s ^3deconstructed^7 %s\n", actor->client->ps.clientNum, self->s.modelindex, mod, actor->client->pers.netname, BG_Buildable( self->s.modelindex )->name ); else - G_LogPrintf( "Decon: %d %d %d: %s^7 destroyed %s by %s\n", + G_LogPrintf( "Decon: %d %d %d: %s ^3destroyed^7 %s by %s\n", actor->client->ps.clientNum, self->s.modelindex, mod, -- cgit