mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-01-18 15:42:41 +00:00
woops
This commit is contained in:
parent
0af241ec9c
commit
e82dd06536
1 changed files with 5 additions and 2 deletions
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.164 2002/08/27 04:50:54 niceass
|
||||
// woops
|
||||
//
|
||||
// Revision 1.163 2002/08/27 04:48:13 niceass
|
||||
// ref say added
|
||||
//
|
||||
|
@ -1450,12 +1453,11 @@ void G_Say(gentity_t * ent, gentity_t * target, int mode, const char *chatText)
|
|||
Com_sprintf(name, sizeof(name), "[DEAD] %s%c%c" EC ": ", ent->client->pers.netname,
|
||||
Q_COLOR_ESCAPE, COLOR_WHITE);
|
||||
}
|
||||
color = COLOR_GREEN;
|
||||
} else {
|
||||
Com_sprintf(name, sizeof(name), "%s%c%c" EC ": ", ent->client->pers.netname, Q_COLOR_ESCAPE,
|
||||
COLOR_WHITE);
|
||||
color = COLOR_GREEN;
|
||||
}
|
||||
color = COLOR_GREEN;
|
||||
break;
|
||||
case SAY_TEAM:
|
||||
if (ent->client->sess.sessionTeam == TEAM_SPECTATOR) {
|
||||
|
@ -1499,6 +1501,7 @@ void G_Say(gentity_t * ent, gentity_t * target, int mode, const char *chatText)
|
|||
case SAY_REF:
|
||||
Com_sprintf(name, sizeof(name), "[REFEREE] %s%c%c" EC ": ", ent->client->pers.netname,
|
||||
Q_COLOR_ESCAPE, COLOR_WHITE);
|
||||
color = COLOR_WHITE;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue