diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-08 17:51:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-08 17:51:01 +0300 |
commit | 025e9b12601079e7aeaaaa25225e9dadc376240a (patch) | |
tree | ce9136fc783f355046a7a044c2c7d2a7b0cc199a /src/net/eathena/charserverrecv.cpp | |
parent | ca23f86b2b1ae730d0511bb1613e5f4b7211c8d7 (diff) | |
download | plus-025e9b12601079e7aeaaaa25225e9dadc376240a.tar.gz plus-025e9b12601079e7aeaaaa25225e9dadc376240a.tar.bz2 plus-025e9b12601079e7aeaaaa25225e9dadc376240a.tar.xz plus-025e9b12601079e7aeaaaa25225e9dadc376240a.zip |
Remove default value from parameter isItemSprite in Being->setSprite.
Diffstat (limited to 'src/net/eathena/charserverrecv.cpp')
-rw-r--r-- | src/net/eathena/charserverrecv.cpp | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/src/net/eathena/charserverrecv.cpp b/src/net/eathena/charserverrecv.cpp index 67917cfd8..817d21da6 100644 --- a/src/net/eathena/charserverrecv.cpp +++ b/src/net/eathena/charserverrecv.cpp @@ -133,7 +133,8 @@ void CharServerRecv::readPlayerData(Net::MessageIn &msg, weapon, "", ItemColor_one, - IsWeapon_true); + IsWeapon_true, + IsTempSprite_false); data.mAttributes[Attributes::LEVEL] = msg.readInt16("level"); @@ -151,7 +152,8 @@ void CharServerRecv::readPlayerData(Net::MessageIn &msg, 0, std::string(), ItemColor_one, - IsWeapon_false); + IsWeapon_false, + IsTempSprite_false); } else { @@ -160,7 +162,8 @@ void CharServerRecv::readPlayerData(Net::MessageIn &msg, ItemDB::get(-hairStyle).getDyeColorsString( color), ItemColor_one, - IsWeapon_false); + IsWeapon_false, + IsTempSprite_false); } const uint16_t look = msg.readInt16("clothes color"); @@ -193,42 +196,50 @@ void CharServerRecv::readPlayerData(Net::MessageIn &msg, shoes, std::string(), ItemColor_one, - IsWeapon_false); + IsWeapon_false, + IsTempSprite_false); tempPlayer->setSprite(SPRITE_SHOES, gloves, std::string(), ItemColor_one, - IsWeapon_false); + IsWeapon_false, + IsTempSprite_false); tempPlayer->setSprite(SPRITE_SHIELD, cape, std::string(), ItemColor_one, - IsWeapon_false); + IsWeapon_false, + IsTempSprite_false); tempPlayer->setSprite(SPRITE_HEAD_TOP, misc1, std::string(), ItemColor_one, - IsWeapon_false); + IsWeapon_false, + IsTempSprite_false); tempPlayer->setSprite(SPRITE_WEAPON, bottomClothes, std::string(), ItemColor_one, - IsWeapon_false); + IsWeapon_false, + IsTempSprite_false); tempPlayer->setSprite(SPRITE_FLOOR, shield, std::string(), ItemColor_one, - IsWeapon_false); + IsWeapon_false, + IsTempSprite_false); tempPlayer->setSprite(SPRITE_CLOTHES_COLOR, hat, std::string(), ItemColor_one, - IsWeapon_false); + IsWeapon_false, + IsTempSprite_false); tempPlayer->setSprite(SPRITE_HEAD_BOTTOM, topClothes, std::string(), ItemColor_one, - IsWeapon_false); + IsWeapon_false, + IsTempSprite_false); // tempPlayer->setSprite(SPRITE_HEAD_MID, misc2); } if (packetVersion >= 20110928) |