summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-22 00:26:41 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-22 00:26:41 +0300
commit7787e10673e0b2a379b713ec823c6858e5ec1249 (patch)
tree16ff087a563df6d09f7862b145b92b2818154d15 /src/net/tmwa
parent8a85cb2bc295ad0ec9e275782b7392c2f99ba134 (diff)
downloadManaVerse-7787e10673e0b2a379b713ec823c6858e5ec1249.tar.gz
ManaVerse-7787e10673e0b2a379b713ec823c6858e5ec1249.tar.bz2
ManaVerse-7787e10673e0b2a379b713ec823c6858e5ec1249.tar.xz
ManaVerse-7787e10673e0b2a379b713ec823c6858e5ec1249.zip
eathena: add packet CMSG_NPC_MARKET_CLOSE 0x09d8.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/markethandler.cpp4
-rw-r--r--src/net/tmwa/markethandler.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/markethandler.cpp b/src/net/tmwa/markethandler.cpp
index 6fe4a22cd..5e7a6a9c4 100644
--- a/src/net/tmwa/markethandler.cpp
+++ b/src/net/tmwa/markethandler.cpp
@@ -47,4 +47,8 @@ void MarketHandler::handleMessage(Net::MessageIn &msg)
}
}
+void MarketHandler::close()
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/markethandler.h b/src/net/tmwa/markethandler.h
index 366191277..d3e1a3101 100644
--- a/src/net/tmwa/markethandler.h
+++ b/src/net/tmwa/markethandler.h
@@ -36,6 +36,8 @@ class MarketHandler final : public MessageHandler,
A_DELETE_COPY(MarketHandler)
void handleMessage(Net::MessageIn &msg) override final;
+
+ void close() override final;
};
} // namespace TmwAthena