diff options
| author | oy <Tom_Adams@web.de> | 2011-03-20 11:17:51 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-03-20 11:17:51 +0100 |
| commit | 2547bfa4fcc8916a47eceb9a929fe73c8a1d83b9 (patch) | |
| tree | b8cddc96a3f2e170fe0b3e1c8093bf803d5ea3e5 | |
| parent | 79aa9d640e5b258e6698d5d86adf190e02dcf866 (diff) | |
| download | zcatch-2547bfa4fcc8916a47eceb9a929fe73c8a1d83b9.tar.gz zcatch-2547bfa4fcc8916a47eceb9a929fe73c8a1d83b9.zip | |
linked console commands player_clan and player_country to the client's info update
| -rw-r--r-- | src/game/client/gameclient.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/client/gameclient.cpp b/src/game/client/gameclient.cpp index d8f18421..20fad034 100644 --- a/src/game/client/gameclient.cpp +++ b/src/game/client/gameclient.cpp @@ -212,6 +212,8 @@ void CGameClient::OnConsoleInit() // Console()->Chain("player_name", ConchainSpecialInfoupdate, this); + Console()->Chain("player_clan", ConchainSpecialInfoupdate, this); + Console()->Chain("player_country", ConchainSpecialInfoupdate, this); Console()->Chain("player_use_custom_color", ConchainSpecialInfoupdate, this); Console()->Chain("player_color_body", ConchainSpecialInfoupdate, this); Console()->Chain("player_color_feet", ConchainSpecialInfoupdate, this); |