summaryrefslogtreecommitdiff
path: root/src/net/eathena/packetsout.inc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-08-26 01:01:03 +0300
committerAndrei Karas <akaras@inbox.ru>2017-08-26 01:01:03 +0300
commit9c2efbbe0e12e7cc24d74a5fbd91cb084fbad3b9 (patch)
treeb53c4971960ad9a8f2bdb32bccacf7c088436f10 /src/net/eathena/packetsout.inc
parentebf2a7a998e6825e8dce3b626704eb408fe30f12 (diff)
downloadplus-9c2efbbe0e12e7cc24d74a5fbd91cb084fbad3b9.tar.gz
plus-9c2efbbe0e12e7cc24d74a5fbd91cb084fbad3b9.tar.bz2
plus-9c2efbbe0e12e7cc24d74a5fbd91cb084fbad3b9.tar.xz
plus-9c2efbbe0e12e7cc24d74a5fbd91cb084fbad3b9.zip
Fix packets version check condition.
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r--src/net/eathena/packetsout.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc
index 652a29f66..96b13b1c7 100644
--- a/src/net/eathena/packetsout.inc
+++ b/src/net/eathena/packetsout.inc
@@ -1350,7 +1350,7 @@ if (packetVersion == 20140305)
}
// 20140326
-if (packetVersion == 20140326)
+if (packetVersion >= 20140326)
{
packet(CMSG_MAIL2_REQUEST_MONEY, 0x09f1, 11, clif->pRodexRequestZeny);
packet(CMSG_MAIL2_REQUEST_ITEMS, 0x09f3, 11, clif->pRodexRequestItems);