diff options
author | Michael Levin <risujin@fastmail.fm> | 2009-10-03 11:23:07 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:14:56 +0000 |
commit | d47dcc40898465ccbaa7f3c60ea23e84ed93b908 (patch) | |
tree | 046465e863fe9610f7ef62b0720a6644def7b6c9 /src/game | |
parent | 270fefbd0527dca45d502f405d0fa84b6c323b0e (diff) |
* Fixed name-change color bleeding bug
* Hovel infopane tweak
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/bg_misc.c | 2 | ||||
-rw-r--r-- | src/game/g_client.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c index a393a72d..cfdd56b8 100644 --- a/src/game/bg_misc.c +++ b/src/game/bg_misc.c @@ -318,7 +318,7 @@ buildableAttributes_t bg_buildableList[ ] = BA_A_HOVEL, //int buildNum; "hovel", //char *buildName; "Hovel", //char *humanName; - "An armoured shell used by the builder class to hide in, while " + "An armoured shell used by the Grangers to hide in, while " "the alien base is under attack. It may be entered or " "exited at any time.", "team_alien_hovel", //char *entityName; diff --git a/src/game/g_client.c b/src/game/g_client.c index da10b994..6c9ea759 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1018,7 +1018,7 @@ void ClientUserinfoChanged( int clientNum ) if( strcmp( oldname, client->pers.netname ) ) { trap_SendServerCommand( -1, va( "print \"%s" S_COLOR_WHITE - " renamed to %s\n\"", oldname, client->pers.netname ) ); + " renamed to %s" S_COLOR_WHITE "\n\"", oldname, client->pers.netname ) ); G_LogPrintf( "ClientRename: %i [%s] (%s) \"%s\" -> \"%s\"\n", clientNum, client->pers.ip, client->pers.guid, oldname, client->pers.netname ); G_admin_namelog_update( client, qfalse ); |