diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-01 18:02:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-01 18:02:17 +0300 |
commit | bfa0ffd5db38174555992c4a21274be41aad753f (patch) | |
tree | 8fc6464790470b62d2f21cedbed2cf9e732d8d70 /src/net/tmwa | |
parent | 87918db755040bb693cb286d8fb0bcfd97d761af (diff) | |
download | plus-bfa0ffd5db38174555992c4a21274be41aad753f.tar.gz plus-bfa0ffd5db38174555992c4a21274be41aad753f.tar.bz2 plus-bfa0ffd5db38174555992c4a21274be41aad753f.tar.xz plus-bfa0ffd5db38174555992c4a21274be41aad753f.zip |
Remove ServerFeatures haveAccountOtherGender because it always false.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/serverfeatures.cpp | 5 | ||||
-rw-r--r-- | src/net/tmwa/serverfeatures.h | 2 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/net/tmwa/serverfeatures.cpp b/src/net/tmwa/serverfeatures.cpp index c56b2f31b..d0221d383 100644 --- a/src/net/tmwa/serverfeatures.cpp +++ b/src/net/tmwa/serverfeatures.cpp @@ -69,11 +69,6 @@ bool ServerFeatures::haveMove3() const return tmwServerVersion >= 0x0f0512 && tmwServerVersion <= 0xf0706; } -bool ServerFeatures::haveAccountOtherGender() const -{ - return false; -} - bool ServerFeatures::haveCharOtherGender() const { return tmwServerVersion > 0x0f0b17; diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h index fbe89e505..1e91d6831 100644 --- a/src/net/tmwa/serverfeatures.h +++ b/src/net/tmwa/serverfeatures.h @@ -48,8 +48,6 @@ class ServerFeatures final : public Net::ServerFeatures bool haveMove3() const override final; - bool haveAccountOtherGender() const override final A_CONST; - bool haveCharOtherGender() const override final; bool haveMonsterAttackRange() const override final; |