summaryrefslogtreecommitdiff
path: root/src/net/eathena/beinghandler.cpp
diff options
context:
space:
mode:
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)