summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-21 00:35:05 +0300
committerAndrei Karas <akaras@inbox.ru>2016-03-21 00:35:05 +0300
commita931445e80ea5f62e5db6eaa740512e02b1f6020 (patch)
tree54662c44b10184a1061d33298e834f4e2fe3e2c9 /src
parentc678b6861e5657f6bde32749f1b3322c837c26fb (diff)
downloadplus-a931445e80ea5f62e5db6eaa740512e02b1f6020.tar.gz
plus-a931445e80ea5f62e5db6eaa740512e02b1f6020.tar.bz2
plus-a931445e80ea5f62e5db6eaa740512e02b1f6020.tar.xz
plus-a931445e80ea5f62e5db6eaa740512e02b1f6020.zip
Fix typo Plater -> Player.
Diffstat (limited to 'src')
-rw-r--r--src/net/eathena/beingrecv.cpp6
-rw-r--r--src/net/eathena/beingrecv.h6
-rw-r--r--src/net/tmwa/beingrecv.cpp2
-rw-r--r--src/net/tmwa/beingrecv.h2
4 files changed, 8 insertions, 8 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp
index 904e8ed23..01dcde62b 100644
--- a/src/net/eathena/beingrecv.cpp
+++ b/src/net/eathena/beingrecv.cpp
@@ -1193,7 +1193,7 @@ void BeingRecv::processSkillEntry(Net::MessageIn &msg)
dstBeing->setCreatorId(creatorId);
}
-void BeingRecv::processPlaterStatusChange(Net::MessageIn &msg)
+void BeingRecv::processPlayerStatusChange(Net::MessageIn &msg)
{
BLOCK_START("BeingRecv::processPlayerStop")
if (!actorManager)
@@ -1221,7 +1221,7 @@ void BeingRecv::processPlaterStatusChange(Net::MessageIn &msg)
BLOCK_END("BeingRecv::processPlayerStop")
}
-void BeingRecv::processPlaterStatusChange2(Net::MessageIn &msg)
+void BeingRecv::processPlayerStatusChange2(Net::MessageIn &msg)
{
if (!actorManager)
return;
@@ -1243,7 +1243,7 @@ void BeingRecv::processPlaterStatusChange2(Net::MessageIn &msg)
statusEffects & 0xffff));
}
-void BeingRecv::processPlaterStatusChangeNoTick(Net::MessageIn &msg)
+void BeingRecv::processPlayerStatusChangeNoTick(Net::MessageIn &msg)
{
const uint16_t status = msg.readInt16("index");
const BeingId id = msg.readBeingId("account id");
diff --git a/src/net/eathena/beingrecv.h b/src/net/eathena/beingrecv.h
index 416d7c894..d0cb1b907 100644
--- a/src/net/eathena/beingrecv.h
+++ b/src/net/eathena/beingrecv.h
@@ -78,14 +78,14 @@ namespace EAthena
void processBeingSoundEffect(Net::MessageIn &msg);
void processSkillGroundNoDamage(Net::MessageIn &msg);
void processSkillEntry(Net::MessageIn &msg);
- void processPlaterStatusChange(Net::MessageIn &msg);
- void processPlaterStatusChangeNoTick(Net::MessageIn &msg);
+ void processPlayerStatusChange(Net::MessageIn &msg);
+ void processPlayerStatusChangeNoTick(Net::MessageIn &msg);
void processBeingResurrect(Net::MessageIn &msg);
void processPlayerGuilPartyInfo(Net::MessageIn &msg);
void processBeingRemoveSkill(Net::MessageIn &msg);
void processBeingFakeName(Net::MessageIn &msg);
void processBeingStatUpdate1(Net::MessageIn &msg);
- void processPlaterStatusChange2(Net::MessageIn &msg);
+ void processPlayerStatusChange2(Net::MessageIn &msg);
void processBeingSelfEffect(Net::MessageIn &msg);
void processMobInfo(Net::MessageIn &msg);
void processBeingAttrs(Net::MessageIn &msg);
diff --git a/src/net/tmwa/beingrecv.cpp b/src/net/tmwa/beingrecv.cpp
index d695e1734..74f6e4492 100644
--- a/src/net/tmwa/beingrecv.cpp
+++ b/src/net/tmwa/beingrecv.cpp
@@ -1162,7 +1162,7 @@ void BeingRecv::processBeingChangeDirection(Net::MessageIn &msg)
BLOCK_END("BeingRecv::processBeingChangeDirection")
}
-void BeingRecv::processPlaterStatusChange(Net::MessageIn &msg)
+void BeingRecv::processPlayerStatusChange(Net::MessageIn &msg)
{
BLOCK_START("BeingRecv::processPlayerStop")
if (!actorManager)
diff --git a/src/net/tmwa/beingrecv.h b/src/net/tmwa/beingrecv.h
index 0d7dd93ff..437035562 100644
--- a/src/net/tmwa/beingrecv.h
+++ b/src/net/tmwa/beingrecv.h
@@ -63,7 +63,7 @@ namespace TmwAthena
const uint8_t type,
const int id,
const int id2) A_NONNULL(2);
- void processPlaterStatusChange(Net::MessageIn &msg);
+ void processPlayerStatusChange(Net::MessageIn &msg);
void processBeingResurrect(Net::MessageIn &msg);
void processPlayerGuilPartyInfo(Net::MessageIn &msg);
void processBeingSelfEffect(Net::MessageIn &msg);