diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-24 19:41:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-24 19:41:46 +0300 |
commit | 280e7f9dcf757bed0bf652cee1a1485c695cc757 (patch) | |
tree | d19f2ec9c63907c1ba0303df3f0951d9f02aaaa4 /src/being | |
parent | 131e6ef514b2edb1bb4df2a004f05f3cc8f8ca8a (diff) | |
download | plus-280e7f9dcf757bed0bf652cee1a1485c695cc757.tar.gz plus-280e7f9dcf757bed0bf652cee1a1485c695cc757.tar.bz2 plus-280e7f9dcf757bed0bf652cee1a1485c695cc757.tar.xz plus-280e7f9dcf757bed0bf652cee1a1485c695cc757.zip |
Fix double warp names.
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/being.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index 5ba258bf5..39f241312 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -881,14 +881,17 @@ void Being::handleSkill(Being *const victim, const int damage, void Being::setName(const std::string &name) { - if (mType == ActorType::Npc || mType == ActorType::Portal) + if (mType == ActorType::Npc) { mName = name.substr(0, name.find('#', 0)); showName(); } else { - mName = name; + if (mType == ActorType::Portal) + mName = name.substr(0, name.find('#', 0)); + else + mName = name; if (getShowName()) showName(); |