diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-20 18:18:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-06-20 18:18:03 +0300 |
commit | cf2a41b8a691e3ecfeef8289cb0a21989ceac882 (patch) | |
tree | 4074a3935525877ca5e01bab48714ea5f930d541 /src/net/tmwa/beinghandler.cpp | |
parent | a111555bd7dbb939673f25f1e8a1f211f61250ad (diff) | |
download | plus-cf2a41b8a691e3ecfeef8289cb0a21989ceac882.tar.gz plus-cf2a41b8a691e3ecfeef8289cb0a21989ceac882.tar.bz2 plus-cf2a41b8a691e3ecfeef8289cb0a21989ceac882.tar.xz plus-cf2a41b8a691e3ecfeef8289cb0a21989ceac882.zip |
Remove from tmwa namespace checks for haveItemColors.
Diffstat (limited to 'src/net/tmwa/beinghandler.cpp')
-rw-r--r-- | src/net/tmwa/beinghandler.cpp | 53 |
1 files changed, 10 insertions, 43 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp index 95eb9c111..f5ebfd2f7 100644 --- a/src/net/tmwa/beinghandler.cpp +++ b/src/net/tmwa/beinghandler.cpp @@ -293,7 +293,7 @@ void BeingHandler::processBeingChangeLook2(Net::MessageIn &msg) int id2 = 0; const int16_t id = msg.readInt16("id1"); - if (type == 2 || serverFeatures->haveItemColors()) + if (type == 2) { id2 = msg.readInt16("id2"); } @@ -514,20 +514,9 @@ void BeingHandler::processPlayerUpdate1(Net::MessageIn &msg) // Set these after the gender, as the sprites may be gender-specific dstBeing->updateSprite(SPRITE_BODY, weapon, "", 1, true); dstBeing->updateSprite(SPRITE_FLOOR, shield); - if (serverFeatures->haveItemColors()) - { - dstBeing->updateSprite(SPRITE_WEAPON, headBottom, - "", colors[0]); - dstBeing->updateSprite(SPRITE_HEAD_BOTTOM, headMid, "", colors[2]); - dstBeing->updateSprite(SPRITE_CLOTHES_COLOR, headTop, - "", colors[1]); - } - else - { - dstBeing->updateSprite(SPRITE_WEAPON, headBottom); - dstBeing->updateSprite(SPRITE_HEAD_BOTTOM, headMid); - dstBeing->updateSprite(SPRITE_CLOTHES_COLOR, headTop); - } + dstBeing->updateSprite(SPRITE_WEAPON, headBottom); + dstBeing->updateSprite(SPRITE_HEAD_BOTTOM, headMid); + dstBeing->updateSprite(SPRITE_CLOTHES_COLOR, headTop); dstBeing->updateSprite(SPRITE_HAIR_COLOR, hairStyle * -1, ItemDB::get(-hairStyle).getDyeColorsString(hairColor)); dstBeing->setHairColor(hairColor); @@ -665,20 +654,9 @@ void BeingHandler::processPlayerUpdate2(Net::MessageIn &msg) // Set these after the gender, as the sprites may be gender-specific dstBeing->updateSprite(SPRITE_BODY, weapon, "", 1, true); dstBeing->updateSprite(SPRITE_FLOOR, shield); - if (serverFeatures->haveItemColors()) - { - dstBeing->updateSprite(SPRITE_WEAPON, headBottom, - "", colors[0]); - dstBeing->updateSprite(SPRITE_HEAD_BOTTOM, headMid, "", colors[2]); - dstBeing->updateSprite(SPRITE_CLOTHES_COLOR, headTop, - "", colors[1]); - } - else - { - dstBeing->updateSprite(SPRITE_WEAPON, headBottom); - dstBeing->updateSprite(SPRITE_HEAD_BOTTOM, headMid); - dstBeing->updateSprite(SPRITE_CLOTHES_COLOR, headTop); - } + dstBeing->updateSprite(SPRITE_WEAPON, headBottom); + dstBeing->updateSprite(SPRITE_HEAD_BOTTOM, headMid); + dstBeing->updateSprite(SPRITE_CLOTHES_COLOR, headTop); dstBeing->updateSprite(SPRITE_HAIR_COLOR, hairStyle * -1, ItemDB::get(-hairStyle).getDyeColorsString(hairColor)); dstBeing->setHairColor(hairColor); @@ -816,20 +794,9 @@ void BeingHandler::processPlayerMove(Net::MessageIn &msg) // Set these after the gender, as the sprites may be gender-specific dstBeing->updateSprite(SPRITE_BODY, weapon, "", 1, true); dstBeing->updateSprite(SPRITE_FLOOR, shield); - if (serverFeatures->haveItemColors()) - { - dstBeing->updateSprite(SPRITE_WEAPON, headBottom, - "", colors[0]); - dstBeing->updateSprite(SPRITE_HEAD_BOTTOM, headMid, "", colors[2]); - dstBeing->updateSprite(SPRITE_CLOTHES_COLOR, headTop, - "", colors[1]); - } - else - { - dstBeing->updateSprite(SPRITE_WEAPON, headBottom); - dstBeing->updateSprite(SPRITE_HEAD_BOTTOM, headMid); - dstBeing->updateSprite(SPRITE_CLOTHES_COLOR, headTop); - } + dstBeing->updateSprite(SPRITE_WEAPON, headBottom); + dstBeing->updateSprite(SPRITE_HEAD_BOTTOM, headMid); + dstBeing->updateSprite(SPRITE_CLOTHES_COLOR, headTop); dstBeing->updateSprite(SPRITE_HAIR_COLOR, hairStyle * -1, ItemDB::get(-hairStyle).getDyeColorsString(hairColor)); dstBeing->setHairColor(hairColor); |