diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-03-09 00:31:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-03-09 00:32:14 +0300 |
commit | a36ef7797d382c62f02be97976d564418029d24c (patch) | |
tree | 186c58af1dc84830cb220ab0f378a399b76a232b | |
parent | 6328313a6d8a76b4d38a82f6f4dcef350c695704 (diff) | |
download | plus-a36ef7797d382c62f02be97976d564418029d24c.tar.gz plus-a36ef7797d382c62f02be97976d564418029d24c.tar.bz2 plus-a36ef7797d382c62f02be97976d564418029d24c.tar.xz plus-a36ef7797d382c62f02be97976d564418029d24c.zip |
Remove useless notifications from chathandler.
-rw-r--r-- | src/net/ea/chathandler.cpp | 8 | ||||
-rw-r--r-- | src/net/eathena/chathandler.cpp | 1 | ||||
-rw-r--r-- | src/net/tmwa/chathandler.cpp | 1 |
3 files changed, 0 insertions, 10 deletions
diff --git a/src/net/ea/chathandler.cpp b/src/net/ea/chathandler.cpp index b72c301e9..b2c6154b3 100644 --- a/src/net/ea/chathandler.cpp +++ b/src/net/ea/chathandler.cpp @@ -56,48 +56,40 @@ void ChatHandler::me(const std::string &text) void ChatHandler::channelList() { - SERVER_NOTICE(_("Channels are not supported!")) } void ChatHandler::enterChannel(const std::string &channel A_UNUSED, const std::string &password A_UNUSED) { - SERVER_NOTICE(_("Channels are not supported!")) } void ChatHandler::quitChannel(int channelId A_UNUSED) { - SERVER_NOTICE(_("Channels are not supported!")) } void ChatHandler::sendToChannel(int channelId A_UNUSED, const std::string &text A_UNUSED) { - SERVER_NOTICE(_("Channels are not supported!")) } void ChatHandler::userList(const std::string &channel A_UNUSED) { - SERVER_NOTICE(_("Channels are not supported!")) } void ChatHandler::setChannelTopic(int channelId A_UNUSED, const std::string &text A_UNUSED) { - SERVER_NOTICE(_("Channels are not supported!")) } void ChatHandler::setUserMode(int channelId A_UNUSED, const std::string &name A_UNUSED, int mode A_UNUSED) { - SERVER_NOTICE(_("Channels are not supported!")) } void ChatHandler::kickUser(int channelId A_UNUSED, const std::string &name A_UNUSED) { - SERVER_NOTICE(_("Channels are not supported!")) } void ChatHandler::processWhisperResponse(Net::MessageIn &msg) diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index f88d40689..5c4d84753 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -24,7 +24,6 @@ #include "actorspritemanager.h" #include "configuration.h" -#include "depricatedevent.h" #include "game.h" #include "localplayer.h" #include "playerrelations.h" diff --git a/src/net/tmwa/chathandler.cpp b/src/net/tmwa/chathandler.cpp index 723a164f2..a6fb2a95b 100644 --- a/src/net/tmwa/chathandler.cpp +++ b/src/net/tmwa/chathandler.cpp @@ -24,7 +24,6 @@ #include "actorspritemanager.h" #include "configuration.h" -#include "depricatedevent.h" #include "game.h" #include "localplayer.h" #include "playerrelations.h" |