diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-11-15 02:01:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-11-15 02:01:59 +0300 |
commit | 5233a6650692e29a2b811359ea7d3f201b157c74 (patch) | |
tree | 4e69ff8c59a61252a9c15d1f021c1b76ff264c23 /src/net/tmwa | |
parent | 4edbdf124303f0e7c229f43a5054755e112ff6b4 (diff) | |
download | plus-5233a6650692e29a2b811359ea7d3f201b157c74.tar.gz plus-5233a6650692e29a2b811359ea7d3f201b157c74.tar.bz2 plus-5233a6650692e29a2b811359ea7d3f201b157c74.tar.xz plus-5233a6650692e29a2b811359ea7d3f201b157c74.zip |
Rename haveOtherGender into haveAccountOtherGender
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/serverfeatures.cpp | 2 | ||||
-rw-r--r-- | src/net/tmwa/serverfeatures.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/net/tmwa/serverfeatures.cpp b/src/net/tmwa/serverfeatures.cpp index a2d60675a..461c25e8d 100644 --- a/src/net/tmwa/serverfeatures.cpp +++ b/src/net/tmwa/serverfeatures.cpp @@ -109,7 +109,7 @@ bool ServerFeatures::haveItemColors() const return false; } -bool ServerFeatures::haveOtherGender() const +bool ServerFeatures::haveAccountOtherGender() const { return false; } diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h index 7a0008583..582bea20b 100644 --- a/src/net/tmwa/serverfeatures.h +++ b/src/net/tmwa/serverfeatures.h @@ -64,7 +64,7 @@ class ServerFeatures final : public Net::ServerFeatures bool haveItemColors() const override final; - bool haveOtherGender() const override final; + bool haveAccountOtherGender() const override final; bool haveMonsterAttackRange() const override final; |