diff --git a/codemp/game/g_cmds.c b/codemp/game/g_cmds.c index 2449e7e2ae..b6fcee405c 100644 --- a/codemp/game/g_cmds.c +++ b/codemp/game/g_cmds.c @@ -2221,12 +2221,12 @@ void G_Say( gentity_t *ent, gentity_t *target, int mode, const char *chatText ) switch ( mode ) { default: case SAY_ALL: - //G_LogPrintf( "say: %s: %s\n", ent->client->pers.netname, text ); // --kinda useless since logs already get the normal chatlogs? + G_LogPrintf( "say: %s: %s\n", ent->client->pers.netname, text ); // --kinda useless since logs already get the normal chatlogs? Com_sprintf (name, sizeof(name), "%s%c%c"EC": ", ent->client->pers.netname, Q_COLOR_ESCAPE, COLOR_WHITE ); color = COLOR_GREEN; break; case SAY_TEAM: - //G_LogPrintf( "sayteam: %s: %s\n", ent->client->pers.netname, text ); + G_LogPrintf( "sayteam: %s: %s\n", ent->client->pers.netname, text ); if (Team_GetLocationMsg(ent, location, sizeof(location))) { Com_sprintf (name, sizeof(name), EC"(%s%c%c"EC")"EC": ", @@ -2255,7 +2255,7 @@ void G_Say( gentity_t *ent, gentity_t *target, int mode, const char *chatText ) color = COLOR_MAGENTA; break; case SAY_CLAN: - //G_LogPrintf( "sayclan: %s: %s\n", ent->client->pers.netname, chatText ); + G_LogPrintf( "sayclan: %s: %s\n", ent->client->pers.netname, chatText ); if (Team_GetLocationMsg(ent, location, sizeof(location))) { Com_sprintf (name, sizeof(name), EC"^1^7(%s%c%c"EC")"EC": ", @@ -2270,7 +2270,7 @@ void G_Say( gentity_t *ent, gentity_t *target, int mode, const char *chatText ) color = COLOR_RED; break; case SAY_ADMIN: - //G_LogPrintf( "sayadmin: %s: %s\n", ent->client->pers.netname, chatText ); + G_LogPrintf( "sayadmin: %s: %s\n", ent->client->pers.netname, chatText ); if (Team_GetLocationMsg(ent, location, sizeof(location))) { Com_sprintf (name, sizeof(name), EC"^3^7(%s%c%c"EC")"EC": ",