summaryrefslogtreecommitdiff
path: root/src/net/eathena/messagein.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/messagein.cpp')
-rw-r--r--src/net/eathena/messagein.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/net/eathena/messagein.cpp b/src/net/eathena/messagein.cpp
index 3a71e0c76..7b21b7485 100644
--- a/src/net/eathena/messagein.cpp
+++ b/src/net/eathena/messagein.cpp
@@ -40,12 +40,21 @@ MessageIn::MessageIn(const char *const data,
{
}
-void MessageIn::postInit(const char *const str)
+void MessageIn::postInit(const char *const str,
+ const unsigned int version)
{
// Read the message ID
mId = readId();
+ mVersion = version;
IGNOREDEBUGLOG;
DEBUGLOG2("Receive packet", 0, "MessageIn");
+#ifdef ENABLEDEBUGLOG
+ if (mVersion > 0)
+ {
+ const std::string verStr = toString(mVersion);
+ DEBUGLOG2("Version", 0, verStr.c_str());
+ }
+#endif
readInt16(str);
}