diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-29 16:56:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-29 16:56:45 +0300 |
commit | 973606a6dbd201050b7d4cd0a6a782ff742056f6 (patch) | |
tree | 4f951409d7dbde5eb201bf3c6b46f777c3ce39b8 /src/net/eathena/beingrecv.cpp | |
parent | d528e58cdbd306a828882eb68855e81dda2a3e62 (diff) | |
download | manaverse-973606a6dbd201050b7d4cd0a6a782ff742056f6.tar.gz manaverse-973606a6dbd201050b7d4cd0a6a782ff742056f6.tar.bz2 manaverse-973606a6dbd201050b7d4cd0a6a782ff742056f6.tar.xz manaverse-973606a6dbd201050b7d4cd0a6a782ff742056f6.zip |
Fix code style.
Diffstat (limited to 'src/net/eathena/beingrecv.cpp')
-rw-r--r-- | src/net/eathena/beingrecv.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp index c9c942023..977e95696 100644 --- a/src/net/eathena/beingrecv.cpp +++ b/src/net/eathena/beingrecv.cpp @@ -49,10 +49,9 @@ #include "net/charserverhandler.h" #include "net/character.h" +#include "net/messagein.h" #include "net/eathena/maptypeproperty2.h" -#include "net/eathena/messageout.h" -#include "net/eathena/protocol.h" #include "net/eathena/sprite.h" #include "resources/iteminfo.h" @@ -136,7 +135,7 @@ void BeingRecv::processBeingChangeLookContinue(Net::MessageIn &msg, const uint8_t type, const int id, const int id2, - const int *cards A_UNUSED) + const int *cards) { if (dstBeing->getType() == ActorType::Player) dstBeing->setOtherTime(); @@ -322,7 +321,8 @@ void BeingRecv::processBeingVisible(Net::MessageIn &msg) const uint16_t headTop = msg.readInt16("head top"); const uint16_t headMid = msg.readInt16("head mid"); - const ItemColor hairColor = fromInt(msg.readInt16("hair color"), ItemColor); + const ItemColor hairColor = fromInt(msg.readInt16("hair color"), + ItemColor); const uint16_t shoes = msg.readInt16("shoes or clothes color?"); const uint16_t gloves = msg.readInt16("head dir / gloves"); |