diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-21 14:18:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-21 14:18:01 +0300 |
commit | 98486abc3255f65f6d21df3359e0cf07992fbfc1 (patch) | |
tree | 9d5eb499af4c7b35f029dbdc928c0efa4997ad7e /src/net/eathena | |
parent | e7ebc6c703cd31577bd78f7b133ba18c5dfab1a9 (diff) | |
download | mv-98486abc3255f65f6d21df3359e0cf07992fbfc1.tar.gz mv-98486abc3255f65f6d21df3359e0cf07992fbfc1.tar.bz2 mv-98486abc3255f65f6d21df3359e0cf07992fbfc1.tar.xz mv-98486abc3255f65f6d21df3359e0cf07992fbfc1.zip |
Fix some status effects packet field names.
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/beingrecv.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp index 01dcde62b..ae4cd1e74 100644 --- a/src/net/eathena/beingrecv.cpp +++ b/src/net/eathena/beingrecv.cpp @@ -1208,8 +1208,8 @@ void BeingRecv::processPlayerStatusChange(Net::MessageIn &msg) if (!dstBeing) return; - const uint16_t stunMode = msg.readInt16("stun mode"); - uint32_t statusEffects = msg.readInt16("status effect"); + const uint16_t stunMode = msg.readInt16("opt1"); + uint32_t statusEffects = msg.readInt16("opt2"); statusEffects |= (CAST_U32(msg.readInt32("option"))) << 16; dstBeing->setKarma(msg.readUInt8("karma")); @@ -1233,7 +1233,7 @@ void BeingRecv::processPlayerStatusChange2(Net::MessageIn &msg) if (!dstBeing) return; - const uint32_t statusEffects = msg.readInt32("status effect"); + const uint32_t statusEffects = msg.readInt32("option"); dstBeing->setLevel(msg.readInt32("level")); msg.readInt32("showEFST"); |