From 6bedbd1724e575a152250eeda7988423d01680ba Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 30 Jul 2014 23:12:06 +0300 Subject: Add chat command for spawn debug local player copy. New chat command: /debugSpawn --- src/being/being.cpp | 8 ++++++++ src/being/being.h | 2 ++ 2 files changed, 10 insertions(+) (limited to 'src/being') diff --git a/src/being/being.cpp b/src/being/being.cpp index f69a084c0..471adedf9 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -3062,6 +3062,14 @@ int Being::getSpriteID(const int slot) const return mSpriteIDs[slot]; } +unsigned char Being::getSpriteColor(const int slot) const +{ + if (slot < 0 || static_cast(slot) >= mSpriteColorsIds.size()) + return 1; + + return mSpriteColorsIds[slot]; +} + void Being::addAfkEffect() { addSpecialEffect(mAwayEffect); diff --git a/src/being/being.h b/src/being/being.h index c9d343659..fc7f27bb7 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -796,6 +796,8 @@ class Being notfinal : public ActorSprite, int getSpriteID(const int slot) const A_WARN_UNUSED; + unsigned char getSpriteColor(const int slot) const A_WARN_UNUSED; + void setHairStyle(const unsigned int slot, const int id); void setHairColor(const unsigned int slot, -- cgit v1.2.3-70-g09d2