diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-06-01 03:03:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-06-01 03:07:13 +0300 |
commit | 09ebcebf32be3842d6158c3145492fbf2959440e (patch) | |
tree | 44970b335330ca56ab38d06f083fa005f1c53ca5 /src/being.h | |
parent | fdb8081a82ec85c9ff23a89a82f81240d8bcaec9 (diff) | |
download | plus-09ebcebf32be3842d6158c3145492fbf2959440e.tar.gz plus-09ebcebf32be3842d6158c3145492fbf2959440e.tar.bz2 plus-09ebcebf32be3842d6158c3145492fbf2959440e.tar.xz plus-09ebcebf32be3842d6158c3145492fbf2959440e.zip |
Add setup option for finding bad chars in nicks.
Highlight bad nicks on map with secure font.
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/being.h b/src/being.h index 1f0d318f3..3313f40ba 100644 --- a/src/being.h +++ b/src/being.h @@ -715,6 +715,12 @@ class Being : public ActorSprite, public ConfigListener void undressItemById(int id); + int getGoodStatus() + { return mGoodStatus; } + + void setGoodStatus(int n) + { mGoodStatus = n; } + static void clearCache(); protected: @@ -820,6 +826,7 @@ class Being : public ActorSprite, public ConfigListener int mMaxHP; int mDistance; int mIsReachable; /**< 0 - unknown, 1 - reachable, 2 - not reachable*/ + int mGoodStatus; static int mUpdateConfigTime; static unsigned int mConfLineLim; |