summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-06 01:32:56 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-06 01:32:56 +0300
commitcb8de74ca982c59387f83047201ecd75ee1ed533 (patch)
tree91ad32decc7adc291ab729f8c664780306aa01b8 /src/net/tmwa
parentec914ceb5f421019a54b442e6fc0a0a2cfe8d627 (diff)
downloadplus-cb8de74ca982c59387f83047201ecd75ee1ed533.tar.gz
plus-cb8de74ca982c59387f83047201ecd75ee1ed533.tar.bz2
plus-cb8de74ca982c59387f83047201ecd75ee1ed533.tar.xz
plus-cb8de74ca982c59387f83047201ecd75ee1ed533.zip
eathena: add packet CMSG_CHAR_CHANGE_SLOT 0x08d4.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/charserverhandler.cpp5
-rw-r--r--src/net/tmwa/charserverhandler.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/tmwa/charserverhandler.cpp b/src/net/tmwa/charserverhandler.cpp
index 21857d45e..8bdd49a11 100644
--- a/src/net/tmwa/charserverhandler.cpp
+++ b/src/net/tmwa/charserverhandler.cpp
@@ -516,4 +516,9 @@ void CharServerHandler::renameCharacter(const int id A_UNUSED,
{
}
+void CharServerHandler::changeSlot(const int oldSlot A_UNUSED,
+ const int newSlot A_UNUSED)
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/charserverhandler.h b/src/net/tmwa/charserverhandler.h
index 22e616003..38f8ce83b 100644
--- a/src/net/tmwa/charserverhandler.h
+++ b/src/net/tmwa/charserverhandler.h
@@ -80,6 +80,8 @@ class CharServerHandler final : public MessageHandler,
void setCharCreateDialog(CharCreateDialog *const window)
override final;
+ void changeSlot(const int oldSlot, const int newSlot) override final;
+
protected:
void readPlayerData(Net::MessageIn &msg,
Net::Character *const character,