diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-19 20:27:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-19 20:27:47 +0300 |
commit | b37388b381a1251683c588189f496eb47b590769 (patch) | |
tree | 1d9d1554b7f6be8c81e612a70113c3c458ab1e99 /src/net/eathena | |
parent | 62d4e9b8cf09fdb490dca4388447c87cf6afd573 (diff) | |
download | plus-b37388b381a1251683c588189f496eb47b590769.tar.gz plus-b37388b381a1251683c588189f496eb47b590769.tar.bz2 plus-b37388b381a1251683c588189f496eb47b590769.tar.xz plus-b37388b381a1251683c588189f496eb47b590769.zip |
Rename rnd fields into option fields in packets.
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/inventoryrecv.cpp | 42 | ||||
-rw-r--r-- | src/net/eathena/traderecv.cpp | 6 | ||||
-rw-r--r-- | src/net/eathena/vendingrecv.cpp | 12 |
3 files changed, 30 insertions, 30 deletions
diff --git a/src/net/eathena/inventoryrecv.cpp b/src/net/eathena/inventoryrecv.cpp index 6faa440a7..9793a1352 100644 --- a/src/net/eathena/inventoryrecv.cpp +++ b/src/net/eathena/inventoryrecv.cpp @@ -159,12 +159,12 @@ void InventoryRecv::processPlayerEquipment(Net::MessageIn &msg) if ((serverVersion >= 8 || serverVersion == 0) && msg.getVersion() >= 20150226) { - msg.readUInt8("rnd count"); + msg.readUInt8("option count"); for (int f = 0; f < 5; f ++) { - msg.readInt16("rnd index"); - msg.readInt16("rnd value"); - msg.readUInt8("rnd param"); + msg.readInt16("option index"); + msg.readInt16("option value"); + msg.readUInt8("option param"); } } ItemFlags flags; @@ -236,9 +236,9 @@ void InventoryRecv::processPlayerInventoryAdd(Net::MessageIn &msg) { for (int f = 0; f < 5; f ++) { - msg.readInt16("rnd index"); - msg.readInt16("rnd value"); - msg.readUInt8("rnd param"); + msg.readInt16("option index"); + msg.readInt16("option value"); + msg.readUInt8("option param"); } } @@ -690,12 +690,12 @@ void InventoryRecv::processPlayerStorageEquip(Net::MessageIn &msg) if ((serverVersion >= 8 || serverVersion == 0) && msg.getVersion() >= 20150226) { - msg.readUInt8("rnd count"); + msg.readUInt8("option count"); for (int f = 0; f < 5; f ++) { - msg.readInt16("rnd index"); - msg.readInt16("rnd value"); - msg.readUInt8("rnd param"); + msg.readInt16("option index"); + msg.readInt16("option value"); + msg.readUInt8("option param"); } } @@ -744,9 +744,9 @@ void InventoryRecv::processPlayerStorageAdd(Net::MessageIn &msg) { for (int f = 0; f < 5; f ++) { - msg.readInt16("rnd index"); - msg.readInt16("rnd value"); - msg.readUInt8("rnd param"); + msg.readInt16("option index"); + msg.readInt16("option value"); + msg.readUInt8("option param"); } } @@ -951,9 +951,9 @@ void InventoryRecv::processPlayerCartAdd(Net::MessageIn &msg) { for (int f = 0; f < 5; f ++) { - msg.readInt16("rnd index"); - msg.readInt16("rnd value"); - msg.readUInt8("rnd param"); + msg.readInt16("option index"); + msg.readInt16("option value"); + msg.readUInt8("option param"); } } @@ -1047,12 +1047,12 @@ void InventoryRecv::processPlayerCartEquip(Net::MessageIn &msg) if ((serverVersion >= 8 || serverVersion == 0) && msg.getVersion() >= 20150226) { - msg.readUInt8("rnd count"); + msg.readUInt8("option count"); for (int f = 0; f < 5; f ++) { - msg.readInt16("rnd index"); - msg.readInt16("rnd value"); - msg.readUInt8("rnd param"); + msg.readInt16("option index"); + msg.readInt16("option value"); + msg.readUInt8("option param"); } } ItemFlags flags; diff --git a/src/net/eathena/traderecv.cpp b/src/net/eathena/traderecv.cpp index 3805848c8..6c743b21a 100644 --- a/src/net/eathena/traderecv.cpp +++ b/src/net/eathena/traderecv.cpp @@ -92,9 +92,9 @@ void TradeRecv::processTradeItemAdd(Net::MessageIn &msg) { for (int f = 0; f < 5; f ++) { - msg.readInt16("rnd index"); - msg.readInt16("rnd value"); - msg.readUInt8("rnd param"); + msg.readInt16("option index"); + msg.readInt16("option value"); + msg.readUInt8("option param"); } } diff --git a/src/net/eathena/vendingrecv.cpp b/src/net/eathena/vendingrecv.cpp index 6d583bca6..7eeb1e65e 100644 --- a/src/net/eathena/vendingrecv.cpp +++ b/src/net/eathena/vendingrecv.cpp @@ -134,9 +134,9 @@ void VendingRecv::processItemsList(Net::MessageIn &msg) { for (int d = 0; d < 5; d ++) { - msg.readInt16("rnd index"); - msg.readInt16("rnd value"); - msg.readUInt8("rnd param"); + msg.readInt16("option index"); + msg.readInt16("option value"); + msg.readUInt8("option param"); } } @@ -210,9 +210,9 @@ void VendingRecv::processOpen(Net::MessageIn &msg) { for (int d = 0; d < 5; d ++) { - msg.readInt16("rnd index"); - msg.readInt16("rnd value"); - msg.readUInt8("rnd param"); + msg.readInt16("option index"); + msg.readInt16("option value"); + msg.readUInt8("option param"); } } } |