summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-07-26 23:26:20 +0300
committerAndrei Karas <akaras@inbox.ru>2018-07-26 23:26:20 +0300
commit232117206ac74c677b3c32db6086f772d9990b11 (patch)
tree7c4e60d10f4ed4a31d9f69aca32be846b5350f1f
parentf4f80ea5f303ada1184c9b41d47ad7cd49af5d0b (diff)
downloadplus-232117206ac74c677b3c32db6086f772d9990b11.tar.gz
plus-232117206ac74c677b3c32db6086f772d9990b11.tar.bz2
plus-232117206ac74c677b3c32db6086f772d9990b11.tar.xz
plus-232117206ac74c677b3c32db6086f772d9990b11.zip
Fix version check in packet RouletteRecv::processRouletteInfoAckType.
-rw-r--r--src/net/eathena/rouletterecv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/rouletterecv.cpp b/src/net/eathena/rouletterecv.cpp
index 352da948a..b6a02127d 100644
--- a/src/net/eathena/rouletterecv.cpp
+++ b/src/net/eathena/rouletterecv.cpp
@@ -39,7 +39,7 @@ void RouletteRecv::processRouletteInfoAckType(Net::MessageIn &msg)
{
msg.readInt16("row");
msg.readInt16("position");
- if (msg.getVersion() >= 20180523)
+ if (msg.getVersion() >= 20180511)
{
msg.readInt32("item id");
msg.readInt16("count");