summaryrefslogtreecommitdiff
path: root/src/net/eathena/loginrecv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/loginrecv.cpp')
-rw-r--r--src/net/eathena/loginrecv.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/net/eathena/loginrecv.cpp b/src/net/eathena/loginrecv.cpp
index 138881315..502e2d247 100644
--- a/src/net/eathena/loginrecv.cpp
+++ b/src/net/eathena/loginrecv.cpp
@@ -45,6 +45,10 @@
#include "debug.h"
extern int packetVersion;
+extern int packetsType;
+extern bool packets_main;
+extern bool packets_re;
+extern bool packets_zero;
extern int evolPacketOffset;
namespace EAthena
@@ -172,6 +176,17 @@ void LoginRecv::processServerVersion(Net::MessageIn &msg)
{
evolPacketOffset = msg.readInt16("evol packet offset");
}
+ if (serverVersion >= 20 && len >= 20)
+ {
+ packetsType = msg.readInt16("server packets type");
+ packets_re = (packetsType & 1) ? true : false;
+ packets_zero = (packetsType & 2) ? true : false;
+ if (packets_re == false &&
+ packets_zero == false)
+ {
+ packets_main = true;
+ }
+ }
}
else
{