summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/g_buildable.c4
-rw-r--r--src/game/g_combat.c4
2 files changed, 4 insertions, 4 deletions
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,