diff options
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/gamehandler.cpp | 18 | ||||
-rw-r--r-- | src/net/ea/gamehandler.h | 2 |
2 files changed, 0 insertions, 20 deletions
diff --git a/src/net/ea/gamehandler.cpp b/src/net/ea/gamehandler.cpp index 653a014c7..cce62c1af 100644 --- a/src/net/ea/gamehandler.cpp +++ b/src/net/ea/gamehandler.cpp @@ -58,24 +58,6 @@ void GameHandler::setMap(const std::string &map) mMap = map.substr(0, map.rfind(".")); } -void GameHandler::processMapLogin(Net::MessageIn &msg) const -{ - unsigned char direction; - uint16_t x, y; - msg.readInt32(); // server tick - msg.readCoordinates(x, y, direction); - msg.skip(2); // 0x0505 - logger->log("Protocol: Player start position: (%d, %d)," - " Direction: %d", x, y, direction); - - mLastHost &= 0xffffff; - - // Switch now or we'll have problems - client->setState(STATE_GAME); - if (localPlayer) - localPlayer->setTileCoords(x, y); -} - void GameHandler::processWhoAnswer(Net::MessageIn &msg) const { NotifyManager::notify(NotifyTypes::ONLINE_USERS, msg.readInt32()); diff --git a/src/net/ea/gamehandler.h b/src/net/ea/gamehandler.h index a10b244c7..68de36c70 100644 --- a/src/net/ea/gamehandler.h +++ b/src/net/ea/gamehandler.h @@ -50,8 +50,6 @@ class GameHandler notfinal : public Net::GameHandler virtual bool canUseMagicBar() const override final A_WARN_UNUSED { return true; } - virtual void processMapLogin(Net::MessageIn &msg) const; - virtual void processWhoAnswer(Net::MessageIn &msg) const; virtual void processCharSwitchResponse(Net::MessageIn &msg) const; |