summaryrefslogtreecommitdiff
path: root/src/net/eathena/friendsrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-11-11 19:21:51 +0300
committerAndrei Karas <akaras@inbox.ru>2016-11-11 19:21:51 +0300
commit4b1002f7c5fad28e39581161c1bf03dbdd1b7b54 (patch)
treeb0fdb77d482740dc3fb76a9dacfd845f13607b8f /src/net/eathena/friendsrecv.cpp
parent841f33c1e9477392907a69108bbbe7cd68895b4d (diff)
downloadManaVerse-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.gz
ManaVerse-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.bz2
ManaVerse-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.tar.xz
ManaVerse-4b1002f7c5fad28e39581161c1bf03dbdd1b7b54.zip
Fix typo implimented -> implemented.
Diffstat (limited to 'src/net/eathena/friendsrecv.cpp')
-rw-r--r--src/net/eathena/friendsrecv.cpp10
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");
}