diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-26 23:26:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-26 23:26:20 +0300 |
commit | 232117206ac74c677b3c32db6086f772d9990b11 (patch) | |
tree | 7c4e60d10f4ed4a31d9f69aca32be846b5350f1f /src/net | |
parent | f4f80ea5f303ada1184c9b41d47ad7cd49af5d0b (diff) | |
download | mv-232117206ac74c677b3c32db6086f772d9990b11.tar.gz mv-232117206ac74c677b3c32db6086f772d9990b11.tar.bz2 mv-232117206ac74c677b3c32db6086f772d9990b11.tar.xz mv-232117206ac74c677b3c32db6086f772d9990b11.zip |
Fix version check in packet RouletteRecv::processRouletteInfoAckType.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/eathena/rouletterecv.cpp | 2 |
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"); |