diff options
author | Sadie Powell <sadie@witchery.services> | 2024-04-15 21:07:52 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-04-15 21:08:40 +0100 |
commit | 5473311bd745a15f3cc718d2a3101c5b61b006fc (patch) | |
tree | 1425af6be212d2014668887f98609ac39fc006c9 /include | |
parent | f3ebb674696c9caf78eead88e6513e077c95d4db (diff) |
Only enable os_noop on IRCDs that actually have a SendSVSNOOP impl.
Diffstat (limited to 'include')
-rw-r--r-- | include/protocol.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/protocol.h b/include/protocol.h index e57cd304f..92b53ef91 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -74,6 +74,9 @@ public: /* Can we force join or part users? */ bool CanSVSJoin = false; + /** Can we force servers to remove opers? */ + bool CanSVSNOOP = false; + /* Can we set vhosts on users? */ bool CanSetVHost = false; |