diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-23 04:04:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-23 04:04:00 +0300 |
commit | 45a17142524b79254b0b87a8385ee36cbfac79ce (patch) | |
tree | 04865c94ae41a9740dc4a52f693cbd830f4c125d /src/net/eathena/beingrecv.cpp | |
parent | 7e8f6e26d5e2d1c560092cf72bc4f7f98f7fba07 (diff) | |
download | mv-45a17142524b79254b0b87a8385ee36cbfac79ce.tar.gz mv-45a17142524b79254b0b87a8385ee36cbfac79ce.tar.bz2 mv-45a17142524b79254b0b87a8385ee36cbfac79ce.tar.xz mv-45a17142524b79254b0b87a8385ee36cbfac79ce.zip |
Fix code style.
Diffstat (limited to 'src/net/eathena/beingrecv.cpp')
-rw-r--r-- | src/net/eathena/beingrecv.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp index 58197bf03..3da2567f8 100644 --- a/src/net/eathena/beingrecv.cpp +++ b/src/net/eathena/beingrecv.cpp @@ -1272,7 +1272,10 @@ void BeingRecv::processSkillEntry(Net::MessageIn &msg) int level = 0; if (msg.getVersion() >= 20130731) level = msg.readUInt8("level"); - Being *const dstBeing = createBeing2(msg, id, job, BeingType::SKILL); + Being *const dstBeing = createBeing2(msg, + id, + job, + BeingType::SKILL); if (!dstBeing) return; dstBeing->setAction(BeingAction::STAND, 0); @@ -1761,7 +1764,7 @@ void BeingRecv::processNameResponse2(Net::MessageIn &msg) Being *BeingRecv::createBeing2(Net::MessageIn &msg, const BeingId id, - const int16_t job, + const int32_t job, const BeingType::BeingType beingType) { if (!actorManager) |