diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-10 18:33:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-10 18:33:32 +0300 |
commit | 041d2bcfc1d66090f2f5c21db03eaafca35add46 (patch) | |
tree | 998aea9a18f55f330b1ecbd8389ae0d736aeb286 /src/net/serverfeatures.h | |
parent | ab07e8d1c5525d9bcbd3669a874d061cbc0236da (diff) | |
download | plus-041d2bcfc1d66090f2f5c21db03eaafca35add46.tar.gz plus-041d2bcfc1d66090f2f5c21db03eaafca35add46.tar.bz2 plus-041d2bcfc1d66090f2f5c21db03eaafca35add46.tar.xz plus-041d2bcfc1d66090f2f5c21db03eaafca35add46.zip |
In server features add havePartyNickInvite.
Allow invite in party by nick if server support havePartyNickInvite.
Diffstat (limited to 'src/net/serverfeatures.h')
-rw-r--r-- | src/net/serverfeatures.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net/serverfeatures.h b/src/net/serverfeatures.h index a2170c44b..3f3268c3a 100644 --- a/src/net/serverfeatures.h +++ b/src/net/serverfeatures.h @@ -32,6 +32,8 @@ class ServerFeatures notfinal { } virtual bool haveOnlineList() const = 0; + + virtual bool havePartyNickInvite() const = 0; }; } // namespace Net |