summaryrefslogtreecommitdiff
path: root/src/net/eathena/beinghandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-08 16:29:20 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-08 16:29:20 +0300
commitab38f105a42355cbf207bf4da48c0c386892781c (patch)
tree713b45108c805241fe5714146dfe0aff2bfd2d13 /src/net/eathena/beinghandler.cpp
parentf8042d0cf07ebb4b10094ac242591d8edf7067ba (diff)
downloadplus-ab38f105a42355cbf207bf4da48c0c386892781c.tar.gz
plus-ab38f105a42355cbf207bf4da48c0c386892781c.tar.bz2
plus-ab38f105a42355cbf207bf4da48c0c386892781c.tar.xz
plus-ab38f105a42355cbf207bf4da48c0c386892781c.zip
Fix code style.
Diffstat (limited to 'src/net/eathena/beinghandler.cpp')
-rw-r--r--src/net/eathena/beinghandler.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index 93733d2fa..5ff11ee83 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -1615,7 +1615,8 @@ void BeingHandler::processPlaterStatusChangeNoTick(Net::MessageIn &msg)
{
const uint16_t status = msg.readInt16("index");
const int id = msg.readInt32("account id");
- const Enable flag = fromBool(msg.readUInt8("state") ? true : false, Enable);
+ const Enable flag = fromBool(msg.readUInt8("state")
+ ? true : false, Enable);
Being *const dstBeing = actorManager->findBeing(id);
if (!dstBeing)