summaryrefslogtreecommitdiff
path: root/src/gui/widgets/chattab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/chattab.cpp')
-rw-r--r--src/gui/widgets/chattab.cpp14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/gui/widgets/chattab.cpp b/src/gui/widgets/chattab.cpp
index bd0504b5..88d62076 100644
--- a/src/gui/widgets/chattab.cpp
+++ b/src/gui/widgets/chattab.cpp
@@ -30,13 +30,8 @@
#include "gui/recorder.h"
#include "gui/scrollarea.h"
+#include "net/chathandler.h"
#include "net/net.h"
-#ifdef TMWSERV_SUPPORT
-#include "net/tmwserv/chatserver/chatserver.h"
-#include "net/tmwserv/gameserver/player.h"
-#else
-#include "net/ea/chathandler.h"
-#endif
#include "resources/iteminfo.h"
#include "resources/itemdb.h"
@@ -276,12 +271,7 @@ void ChatTab::clearText()
}
void ChatTab::handleInput(const std::string &msg) {
- // Net::getChatHandler()->talk(msg);
-#ifdef TMWSERV_SUPPORT
- Net::GameServer::Player::say(msg);
-#else
- chatHandler->talk(msg);
-#endif
+ Net::getChatHandler()->talk(msg);
}
void ChatTab::handleCommand(std::string msg)