summaryrefslogtreecommitdiff
path: root/src/net/eathena/beinghandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-26 19:20:58 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-26 20:51:46 +0300
commit25dff985b6415335536a2df2e901098ebc3369e3 (patch)
tree9f7a80f2390bfd9056ae8276bb95658103572c52 /src/net/eathena/beinghandler.cpp
parent49099b799bfdf74393b70530d81942c414bed4a1 (diff)
downloadplus-25dff985b6415335536a2df2e901098ebc3369e3.tar.gz
plus-25dff985b6415335536a2df2e901098ebc3369e3.tar.bz2
plus-25dff985b6415335536a2df2e901098ebc3369e3.tar.xz
plus-25dff985b6415335536a2df2e901098ebc3369e3.zip
eathena: fix some packets naming.
Diffstat (limited to 'src/net/eathena/beinghandler.cpp')
-rw-r--r--src/net/eathena/beinghandler.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index f76f3d7c5..747df5d9d 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -118,11 +118,11 @@ BeingHandler::BeingHandler(const bool enableSync) :
SMSG_BEING_ATTRS,
SMSG_MONSTER_INFO,
SMSG_CLASS_CHANGE,
- CMSG_SPIRIT_BALLS,
- CMSG_SPIRIT_BALL_SINGLE,
- CMSG_BLADE_STOP,
- CMSG_COMBO_DELAY,
- CMSG_WEDDING_EFFECT,
+ SMSG_SPIRIT_BALLS,
+ SMSG_SPIRIT_BALL_SINGLE,
+ SMSG_BLADE_STOP,
+ SMSG_COMBO_DELAY,
+ SMSG_WEDDING_EFFECT,
SMSG_BEING_SLIDE,
SMSG_STARS_KILL,
SMSG_BLACKSMITH_RANKS_LIST,
@@ -339,23 +339,23 @@ void BeingHandler::handleMessage(Net::MessageIn &msg)
processClassChange(msg);
break;
- case CMSG_SPIRIT_BALLS:
+ case SMSG_SPIRIT_BALLS:
processSpiritBalls(msg);
break;
- case CMSG_SPIRIT_BALL_SINGLE:
+ case SMSG_SPIRIT_BALL_SINGLE:
processSpiritBallSingle(msg);
break;
- case CMSG_BLADE_STOP:
+ case SMSG_BLADE_STOP:
processBladeStop(msg);
break;
- case CMSG_COMBO_DELAY:
+ case SMSG_COMBO_DELAY:
processComboDelay(msg);
break;
- case CMSG_WEDDING_EFFECT:
+ case SMSG_WEDDING_EFFECT:
processWddingEffect(msg);
break;