diff options
-rw-r--r-- | src/net/eathena/vendingrecv.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/eathena/vendingrecv.cpp b/src/net/eathena/vendingrecv.cpp index ad4635078..146f2102e 100644 --- a/src/net/eathena/vendingrecv.cpp +++ b/src/net/eathena/vendingrecv.cpp @@ -101,7 +101,7 @@ void VendingRecv::processItemsList(Net::MessageIn &msg) cards[d] = msg.readInt16("card"); if (serverVersion >= 8 && packetVersion >= 20150226) { - for (int f = 0; f < 5; f ++) + for (int d = 0; d < 5; d ++) { msg.readInt16("rnd index"); msg.readInt16("rnd value"); @@ -144,7 +144,7 @@ void VendingRecv::processOpen(Net::MessageIn &msg) msg.readInt16("card"); if (serverVersion >= 8 && packetVersion >= 20150226) { - for (int f = 0; f < 5; f ++) + for (int d = 0; d < 5; d ++) { msg.readInt16("rnd index"); msg.readInt16("rnd value"); |