diff options
author | Stefan Dombrowski <stefan@uni-bonn.de> | 2010-10-11 22:05:02 +0200 |
---|---|---|
committer | Stefan Dombrowski <stefan@uni-bonn.de> | 2010-10-11 22:05:02 +0200 |
commit | c69866123ba83f9dd4619c81eca312dda0559393 (patch) | |
tree | ff5096e3df390609744ddf1935df1053352f3f80 /src/commandhandler.h | |
parent | 2fb1520540598a5e6201f722979dada6b3283d0d (diff) | |
download | mana-c69866123ba83f9dd4619c81eca312dda0559393.tar.gz mana-c69866123ba83f9dd4619c81eca312dda0559393.tar.bz2 mana-c69866123ba83f9dd4619c81eca312dda0559393.tar.xz mana-c69866123ba83f9dd4619c81eca312dda0559393.zip |
Implementing show IP for game masters
As an upcoming feature the TMW-Athena server sends IP addresses or
IP hashes to game masters. The current client freezes if it receives
such a packet, therefor the game masters need to use a new client before
the server can use it. Normal players are not affected, because they
do not get this packet.
Showing the IP is optional and can be enable with the chat command
"/showip 1". The IP is then shown behind the players name.
Reviewed-by: Bertram
Diffstat (limited to 'src/commandhandler.h')
-rw-r--r-- | src/commandhandler.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/commandhandler.h b/src/commandhandler.h index c65c3670..c14305e1 100644 --- a/src/commandhandler.h +++ b/src/commandhandler.h @@ -147,6 +147,11 @@ class CommandHandler * Handle away command. */ void handleAway(const std::string &args, ChatTab *tab); + + /* + * Handle showip command. + */ + void handleShowIp(const std::string &args, ChatTab *tab); }; extern CommandHandler *commandHandler; |