diff options
Diffstat (limited to 'src/net/eathena/maphandler.cpp')
-rw-r--r-- | src/net/eathena/maphandler.cpp | 37 |
1 files changed, 1 insertions, 36 deletions
diff --git a/src/net/eathena/maphandler.cpp b/src/net/eathena/maphandler.cpp index 082bb5f3f..0616e3e1f 100644 --- a/src/net/eathena/maphandler.cpp +++ b/src/net/eathena/maphandler.cpp @@ -30,44 +30,9 @@ extern Net::MapHandler *mapHandler; namespace EAthena { -MapHandler::MapHandler() : - MessageHandler() +MapHandler::MapHandler() { - static const uint16_t _messages[] = - { - SMSG_INSTANCE_START, - SMSG_INSTANCE_CREATE, - SMSG_INSTANCE_INFO, - SMSG_INSTANCE_DELETE, - 0 - }; - handledMessages = _messages; mapHandler = this; } -void MapHandler::handleMessage(Net::MessageIn &msg) -{ - switch (msg.getId()) - { - case SMSG_INSTANCE_START: - MapRecv::processInstanceStart(msg); - break; - - case SMSG_INSTANCE_CREATE: - MapRecv::processInstanceCreate(msg); - break; - - case SMSG_INSTANCE_INFO: - MapRecv::processInstanceInfo(msg); - break; - - case SMSG_INSTANCE_DELETE: - MapRecv::processInstanceDelete(msg); - break; - - default: - break; - } -} - } // namespace EAthena |