From 2d07e4b837ee631a73dd2319f9bec9429556ed0a Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 1 May 2017 00:43:42 +0300 Subject: Remove ServerFeatures havePartyNickInvite, because it depend only on server type. --- src/gui/popups/popupmenu.cpp | 2 +- src/net/eathena/serverfeatures.cpp | 5 ----- src/net/eathena/serverfeatures.h | 2 -- src/net/serverfeatures.h | 2 -- src/net/tmwa/serverfeatures.cpp | 5 ----- src/net/tmwa/serverfeatures.h | 2 -- 6 files changed, 1 insertion(+), 17 deletions(-) (limited to 'src') diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index 913ebdeba..450dcee1d 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -1013,7 +1013,7 @@ void PopupMenu::showChatPopup(const int x, const int y, ChatTab *const tab) } addPlayerMisc(); addBuySellDefault(); - if (serverFeatures->havePartyNickInvite()) + if (Net::getNetworkType() == ServerType::EATHENA) addParty(wTab->getNick()); mBrowserBox->addRow("##3---"); } diff --git a/src/net/eathena/serverfeatures.cpp b/src/net/eathena/serverfeatures.cpp index d787d0433..924a588d3 100644 --- a/src/net/eathena/serverfeatures.cpp +++ b/src/net/eathena/serverfeatures.cpp @@ -41,11 +41,6 @@ bool ServerFeatures::haveServerOnlineList() const return serverVersion > 0; } -bool ServerFeatures::havePartyNickInvite() const -{ - return true; -} - bool ServerFeatures::haveServerHp() const { return true; diff --git a/src/net/eathena/serverfeatures.h b/src/net/eathena/serverfeatures.h index 7b6f790fe..5d0da137e 100644 --- a/src/net/eathena/serverfeatures.h +++ b/src/net/eathena/serverfeatures.h @@ -36,8 +36,6 @@ class ServerFeatures final : public Net::ServerFeatures bool haveServerOnlineList() const override final; - bool havePartyNickInvite() const override final A_CONST; - bool haveServerHp() const override final A_CONST; bool havePlayerStatusUpdate() const override final; diff --git a/src/net/serverfeatures.h b/src/net/serverfeatures.h index 18cc10c42..2262f2dcc 100644 --- a/src/net/serverfeatures.h +++ b/src/net/serverfeatures.h @@ -38,8 +38,6 @@ class ServerFeatures notfinal virtual bool haveServerOnlineList() const = 0; - virtual bool havePartyNickInvite() const = 0; - virtual bool haveServerHp() const = 0; virtual bool havePlayerStatusUpdate() const = 0; diff --git a/src/net/tmwa/serverfeatures.cpp b/src/net/tmwa/serverfeatures.cpp index 40e51e30e..a413e2f19 100644 --- a/src/net/tmwa/serverfeatures.cpp +++ b/src/net/tmwa/serverfeatures.cpp @@ -39,11 +39,6 @@ bool ServerFeatures::haveServerOnlineList() const return false; } -bool ServerFeatures::havePartyNickInvite() const -{ - return false; -} - bool ServerFeatures::haveServerHp() const { return tmwServerVersion > 0x0f0513; diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h index bdbaefd9d..1cd4feb2d 100644 --- a/src/net/tmwa/serverfeatures.h +++ b/src/net/tmwa/serverfeatures.h @@ -36,8 +36,6 @@ class ServerFeatures final : public Net::ServerFeatures bool haveServerOnlineList() const override final A_CONST; - bool havePartyNickInvite() const override final A_CONST; - bool haveServerHp() const override final; bool havePlayerStatusUpdate() const override final A_CONST; -- cgit v1.2.3-60-g2f50