diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-28 15:23:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-28 15:23:03 +0300 |
commit | 5ae7168e1f30efa4fd61c155eaecd55ce83bea14 (patch) | |
tree | 617af9417f6b4175fdf4ba0691dd5c4ac28e427e /src/guild.cpp | |
parent | 096de2a656c036a241dd5f10c2bf28ae4d4dbe5a (diff) | |
download | plus-5ae7168e1f30efa4fd61c155eaecd55ce83bea14.tar.gz plus-5ae7168e1f30efa4fd61c155eaecd55ce83bea14.tar.bz2 plus-5ae7168e1f30efa4fd61c155eaecd55ce83bea14.tar.xz plus-5ae7168e1f30efa4fd61c155eaecd55ce83bea14.zip |
improve guild related files.
Diffstat (limited to 'src/guild.cpp')
-rw-r--r-- | src/guild.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/guild.cpp b/src/guild.cpp index c7ad34c30..09ff80cc7 100644 --- a/src/guild.cpp +++ b/src/guild.cpp @@ -235,9 +235,12 @@ void Guild::removeFromMembers() const MemberList::const_iterator itr_end = mMembers.end(); while (itr != itr_end) { - Being *const b = actorSpriteManager->findBeing((*itr)->getID()); - if (b) - b->removeGuild(getId()); + if (*itr) + { + Being *const b = actorSpriteManager->findBeing((*itr)->getID()); + if (b) + b->removeGuild(mId); + } ++itr; } } @@ -319,7 +322,7 @@ void Guild::getNames(StringVect &names) const } } -void Guild::addPos(const int id, std::string name) +void Guild::addPos(const int id, const std::string &name) { mPositions[id] = name; } |