diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-08-27 06:07:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-08-27 06:07:27 +0300 |
commit | cf8445d68f109a20ec22cee84c7dc06411390900 (patch) | |
tree | 48a85b889a1e462cba230a63c48237e560223a05 | |
parent | 58ce176510f85a07523690d9cd67df850a8b1f58 (diff) | |
download | plus-cf8445d68f109a20ec22cee84c7dc06411390900.tar.gz plus-cf8445d68f109a20ec22cee84c7dc06411390900.tar.bz2 plus-cf8445d68f109a20ec22cee84c7dc06411390900.tar.xz plus-cf8445d68f109a20ec22cee84c7dc06411390900.zip |
Fix guild name update on players.
-rw-r--r-- | src/being.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp index 1924a8944..eeb366b5d 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -875,8 +875,8 @@ void Being::updateGuild() setGuild(guild); if (!guild->getName().empty()) mGuildName = guild->getName(); - updateColors(); } + updateColors(); } void Being::setGuild(Guild *guild) |