diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-11-11 19:21:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-11-11 19:21:51 +0300 |
commit | 4b1002f7c5fad28e39581161c1bf03dbdd1b7b54 (patch) | |
tree | b0fdb77d482740dc3fb76a9dacfd845f13607b8f /src/net/eathena/cashshoprecv.cpp | |
parent | 841f33c1e9477392907a69108bbbe7cd68895b4d (diff) | |
download | manaverse-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.gz manaverse-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.bz2 manaverse-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.xz manaverse-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.zip |
Fix typo implimented -> implemented.
Diffstat (limited to 'src/net/eathena/cashshoprecv.cpp')
-rw-r--r-- | src/net/eathena/cashshoprecv.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/net/eathena/cashshoprecv.cpp b/src/net/eathena/cashshoprecv.cpp index 0e868cda3..fd9e6219e 100644 --- a/src/net/eathena/cashshoprecv.cpp +++ b/src/net/eathena/cashshoprecv.cpp @@ -69,7 +69,7 @@ void CashShopRecv::processCashShopOpen(Net::MessageIn &msg) void CashShopRecv::processCashShopBuyAck(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + UNIMPLEMENTEDPACKET; msg.readInt32("cash points"); if (packetVersion >= 20070711) msg.readInt32("kafra points"); @@ -78,14 +78,14 @@ void CashShopRecv::processCashShopBuyAck(Net::MessageIn &msg) void CashShopRecv::processCashShopPoints(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + UNIMPLEMENTEDPACKET; msg.readInt32("cash points"); msg.readInt32("kafra points"); } void CashShopRecv::processCashShopBuy(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + UNIMPLEMENTEDPACKET; msg.readInt32("id"); msg.readInt16("result"); msg.readInt32("cash points"); @@ -94,7 +94,7 @@ void CashShopRecv::processCashShopBuy(Net::MessageIn &msg) void CashShopRecv::processCashShopTabPriceList(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + UNIMPLEMENTEDPACKET; const int count = (msg.readInt16("len") - 10) / 6; msg.readInt32("tab"); const int itemsCount = msg.readInt16("count"); @@ -110,7 +110,7 @@ void CashShopRecv::processCashShopTabPriceList(Net::MessageIn &msg) void CashShopRecv::processCashShopSchedule(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + UNIMPLEMENTEDPACKET; const int count = (msg.readInt16("len") - 8) / 6; const int itemsCount = msg.readInt16("count"); msg.readInt16("tab"); |