summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-09-20 18:37:32 +0300
committerAndrei Karas <akaras@inbox.ru>2015-09-20 21:26:08 +0300
commit2ac58b6b39b155a9033677f225fe5c56b63cb6b1 (patch)
treee803ac2cedf2b79106a632438c35a7b84abbca68 /src/net/eathena
parent89b050bdb385dd80cf5c03336565e97239ef24bf (diff)
downloadplus-2ac58b6b39b155a9033677f225fe5c56b63cb6b1.tar.gz
plus-2ac58b6b39b155a9033677f225fe5c56b63cb6b1.tar.bz2
plus-2ac58b6b39b155a9033677f225fe5c56b63cb6b1.tar.xz
plus-2ac58b6b39b155a9033677f225fe5c56b63cb6b1.zip
Fix processBeingRemoveSkill name.
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/beingrecv.cpp2
-rw-r--r--src/net/eathena/beingrecv.h2
-rw-r--r--src/net/eathena/packetsin.inc2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp
index 31a7bd371..f794b8091 100644
--- a/src/net/eathena/beingrecv.cpp
+++ b/src/net/eathena/beingrecv.cpp
@@ -1275,7 +1275,7 @@ void BeingRecv::processPlayerGuilPartyInfo(Net::MessageIn &msg)
BLOCK_END("BeingRecv::processPlayerGuilPartyInfo")
}
-void BeingRecv::processBeingRemoveSkil(Net::MessageIn &msg)
+void BeingRecv::processBeingRemoveSkill(Net::MessageIn &msg)
{
UNIMPLIMENTEDPACKET;
// +++ if skill unit was added, here need remove it from actors
diff --git a/src/net/eathena/beingrecv.h b/src/net/eathena/beingrecv.h
index 31b35d5a3..ed51f1b4e 100644
--- a/src/net/eathena/beingrecv.h
+++ b/src/net/eathena/beingrecv.h
@@ -81,7 +81,7 @@ namespace EAthena
void processPlaterStatusChangeNoTick(Net::MessageIn &msg);
void processBeingResurrect(Net::MessageIn &msg);
void processPlayerGuilPartyInfo(Net::MessageIn &msg);
- void processBeingRemoveSkil(Net::MessageIn &msg);
+ void processBeingRemoveSkill(Net::MessageIn &msg);
void processBeingFakeName(Net::MessageIn &msg);
void processBeingStatUpdate1(Net::MessageIn &msg);
void processPlaterStatusChange2(Net::MessageIn &msg);
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc
index a2ffcfcbe..ea44d5a3f 100644
--- a/src/net/eathena/packetsin.inc
+++ b/src/net/eathena/packetsin.inc
@@ -62,7 +62,7 @@ packet(SMSG_BEING_MOVE3, 0x0b04, -1, &Ea::BeingRecv::processB
packet(SMSG_BEING_NAME_RESPONSE, 0x0095, 30, &Ea::BeingRecv::processNameResponse);
packet(SMSG_BEING_NAME_RESPONSE2, 0x0b01, -1, &BeingRecv::processNameResponse2);
packet(SMSG_BEING_REMOVE, 0x0080, 7, &Ea::BeingRecv::processBeingRemove);
-packet(SMSG_BEING_REMOVE_SKILL, 0x0120, 6, &BeingRecv::processBeingRemoveSkil);
+packet(SMSG_BEING_REMOVE_SKILL, 0x0120, 6, &BeingRecv::processBeingRemoveSkill);
packet(SMSG_BEING_RESURRECT, 0x0148, 8, &BeingRecv::processBeingResurrect);
packet(SMSG_BEING_SELFEFFECT, 0x019b, 10, &BeingRecv::processBeingSelfEffect);
packet(SMSG_BEING_SLIDE, 0x01ff, 10, &BeingRecv::processBeingSlide);