summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-07-14 01:32:24 +0300
committerAndrei Karas <akaras@inbox.ru>2018-07-14 01:32:24 +0300
commit2822bd9efe74131a6f0614f8092db9c990a0e708 (patch)
treec7b5aec485abd33e3a9d9761430a56e246445270 /src/net/tmwa
parentacd87806b767d70c0676c0f800e23a7ce4f623e0 (diff)
downloadplus-2822bd9efe74131a6f0614f8092db9c990a0e708.tar.gz
plus-2822bd9efe74131a6f0614f8092db9c990a0e708.tar.bz2
plus-2822bd9efe74131a6f0614f8092db9c990a0e708.tar.xz
plus-2822bd9efe74131a6f0614f8092db9c990a0e708.zip
Add packet CMSG_PET_EVOLUTION 0x09fb.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/pethandler.cpp5
-rw-r--r--src/net/tmwa/pethandler.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/tmwa/pethandler.cpp b/src/net/tmwa/pethandler.cpp
index 4e7577bf9..63a82df9a 100644
--- a/src/net/tmwa/pethandler.cpp
+++ b/src/net/tmwa/pethandler.cpp
@@ -81,4 +81,9 @@ void PetHandler::setDirection(const unsigned char type A_UNUSED) const
{
}
+void PetHandler::evolution(const Item *item A_UNUSED) const
+{
+}
+
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/pethandler.h b/src/net/tmwa/pethandler.h
index 884110932..87d16c023 100644
--- a/src/net/tmwa/pethandler.h
+++ b/src/net/tmwa/pethandler.h
@@ -58,6 +58,8 @@ class PetHandler final : public Net::PetHandler
void setDirection(const unsigned char type) const override final;
+ void evolution(const Item *const item) const override final;
+
protected:
int mRandCounter;
};