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/friendsrecv.cpp | |
parent | 841f33c1e9477392907a69108bbbe7cd68895b4d (diff) | |
download | mv-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.gz mv-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.bz2 mv-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.xz mv-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.zip |
Fix typo implimented -> implemented.
Diffstat (limited to 'src/net/eathena/friendsrecv.cpp')
-rw-r--r-- | src/net/eathena/friendsrecv.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/net/eathena/friendsrecv.cpp b/src/net/eathena/friendsrecv.cpp index 911701e50..4d414c05c 100644 --- a/src/net/eathena/friendsrecv.cpp +++ b/src/net/eathena/friendsrecv.cpp @@ -31,7 +31,7 @@ namespace EAthena void FriendsRecv::processPlayerOnline(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + UNIMPLEMENTEDPACKET; msg.readBeingId("account id"); msg.readInt32("char id"); msg.readUInt8("flag"); // 0 - online, 1 - offline @@ -39,7 +39,7 @@ void FriendsRecv::processPlayerOnline(Net::MessageIn &msg) void FriendsRecv::processFriendsList(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + UNIMPLEMENTEDPACKET; const int count = (msg.readInt16("size") - 4) / 32; for (int f = 0; f < count; f ++) { @@ -51,7 +51,7 @@ void FriendsRecv::processFriendsList(Net::MessageIn &msg) void FriendsRecv::processRequestAck(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + UNIMPLEMENTEDPACKET; msg.readInt16("type"); msg.readBeingId("account id"); msg.readInt32("char id"); @@ -60,7 +60,7 @@ void FriendsRecv::processRequestAck(Net::MessageIn &msg) void FriendsRecv::processRequest(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + UNIMPLEMENTEDPACKET; msg.readBeingId("account id"); msg.readInt32("char id"); msg.readString(24, "name"); @@ -68,7 +68,7 @@ void FriendsRecv::processRequest(Net::MessageIn &msg) void FriendsRecv::processDeletePlayer(Net::MessageIn &msg) { - UNIMPLIMENTEDPACKET; + UNIMPLEMENTEDPACKET; msg.readBeingId("account id"); msg.readInt32("char id"); } |