diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-08 18:26:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-08 18:55:05 +0300 |
commit | 53ccb4e767914782172c09ead9076f9fccaa5253 (patch) | |
tree | 2bcf886b7c0b25c4a757892148fcd5c3778403ea /src/net/tmwa/charserverrecv.cpp | |
parent | e03f294796e1cd8d49d00fd86dc33959948924c7 (diff) | |
download | plus-53ccb4e767914782172c09ead9076f9fccaa5253.tar.gz plus-53ccb4e767914782172c09ead9076f9fccaa5253.tar.bz2 plus-53ccb4e767914782172c09ead9076f9fccaa5253.tar.xz plus-53ccb4e767914782172c09ead9076f9fccaa5253.zip |
Add setTempSprite method into Being.
Diffstat (limited to 'src/net/tmwa/charserverrecv.cpp')
-rw-r--r-- | src/net/tmwa/charserverrecv.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/net/tmwa/charserverrecv.cpp b/src/net/tmwa/charserverrecv.cpp index 15c8aa7a0..a940799ba 100644 --- a/src/net/tmwa/charserverrecv.cpp +++ b/src/net/tmwa/charserverrecv.cpp @@ -109,7 +109,6 @@ void CharServerRecv::readPlayerData(Net::MessageIn &msg, "", ItemColor_one, IsWeapon_true, - IsTempSprite_false, nullptr); data.mAttributes[Attributes::LEVEL] = msg.readInt16("level"); @@ -131,7 +130,6 @@ void CharServerRecv::readPlayerData(Net::MessageIn &msg, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); } else @@ -141,7 +139,6 @@ void CharServerRecv::readPlayerData(Net::MessageIn &msg, ItemDB::get(-hairStyle).getDyeColorsString(hairColor), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); } tempPlayer->setHairColor(hairColor); @@ -163,63 +160,54 @@ void CharServerRecv::readPlayerData(Net::MessageIn &msg, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); tempPlayer->setSprite(SPRITE_SHOES, gloves, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); tempPlayer->setSprite(SPRITE_SHIELD, cape, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); tempPlayer->setSprite(SPRITE_HEAD_TOP, misc1, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); tempPlayer->setSprite(SPRITE_WEAPON, bottomClothes, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); tempPlayer->setSprite(SPRITE_FLOOR, shield, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); tempPlayer->setSprite(SPRITE_CLOTHES_COLOR, hat, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); tempPlayer->setSprite(SPRITE_HEAD_BOTTOM, topClothes, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); tempPlayer->setSprite(SPRITE_HEAD_MID, misc2, std::string(), ItemColor_one, IsWeapon_false, - IsTempSprite_false, nullptr); character->slot = msg.readUInt8("slot"); |