summaryrefslogtreecommitdiff
path: root/src/net/eathena/searchstorerecv.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/searchstorerecv.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/searchstorerecv.cpp')
-rw-r--r--src/net/eathena/searchstorerecv.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/searchstorerecv.cpp b/src/net/eathena/searchstorerecv.cpp
index c2cfda0d2..586d6cb83 100644
--- a/src/net/eathena/searchstorerecv.cpp
+++ b/src/net/eathena/searchstorerecv.cpp
@@ -36,7 +36,7 @@ namespace EAthena
void SearchStoreRecv::processSearchAck(Net::MessageIn &msg)
{
- UNIMPLIMENTEDPACKET;
+ UNIMPLEMENTEDPACKET;
const int count = (msg.readInt16("len") - 7) / 106;
msg.readUInt8("is first page");
msg.readUInt8("is next page");
@@ -60,7 +60,7 @@ void SearchStoreRecv::processSearchAck(Net::MessageIn &msg)
void SearchStoreRecv::processSearchFailed(Net::MessageIn &msg)
{
- UNIMPLIMENTEDPACKET;
+ UNIMPLEMENTEDPACKET;
const int result = msg.readUInt8("result");
switch (result)
{
@@ -93,7 +93,7 @@ void SearchStoreRecv::processSearchFailed(Net::MessageIn &msg)
void SearchStoreRecv::processSearchOpen(Net::MessageIn &msg)
{
- UNIMPLIMENTEDPACKET;
+ UNIMPLEMENTEDPACKET;
msg.readInt16("effect");
if (msg.getVersion() >= 20100701)
msg.readUInt8("uses");
@@ -101,7 +101,7 @@ void SearchStoreRecv::processSearchOpen(Net::MessageIn &msg)
void SearchStoreRecv::processSearchClickAck(Net::MessageIn &msg)
{
- UNIMPLIMENTEDPACKET;
+ UNIMPLEMENTEDPACKET;
msg.readInt16("x");
msg.readInt16("y");
}