diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-01 23:13:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-01 23:13:33 +0300 |
commit | 3db50047155e200c9ece17e711d7334e49aff84f (patch) | |
tree | cc6aaf717c427cf76012bc57d047bdafa22ea184 /src/net/tmwa | |
parent | b074109077e850b3f015fe6e60f320d4c64d23b2 (diff) | |
download | plus-3db50047155e200c9ece17e711d7334e49aff84f.tar.gz plus-3db50047155e200c9ece17e711d7334e49aff84f.tar.bz2 plus-3db50047155e200c9ece17e711d7334e49aff84f.tar.xz plus-3db50047155e200c9ece17e711d7334e49aff84f.zip |
Remove ServerFeatures haveFamily because in only depend on server type.
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 220699048..0c7bca22e 100644 --- a/src/net/tmwa/serverfeatures.cpp +++ b/src/net/tmwa/serverfeatures.cpp @@ -139,11 +139,6 @@ bool ServerFeatures::haveExtendedDropsPosition() const return false; } -bool ServerFeatures::haveFamily() const -{ - return false; -} - bool ServerFeatures::haveMoveWhileSit() const { return true; diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h index e5e404fd9..95371c1b3 100644 --- a/src/net/tmwa/serverfeatures.h +++ b/src/net/tmwa/serverfeatures.h @@ -76,8 +76,6 @@ class ServerFeatures final : public Net::ServerFeatures bool haveExtendedDropsPosition() const override final A_CONST; - bool haveFamily() const override final A_CONST; - bool haveMoveWhileSit() const override final A_CONST; bool haveKillerId() const override final A_CONST; |