diff options
author | Sadie Powell <sadie@witchery.services> | 2022-09-12 15:13:10 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-09-12 17:56:45 +0100 |
commit | 0c61915e310461fda25566728a42ca7fe175d6ea (patch) | |
tree | 4f02aeaaa391153621f60515ddc7ef77a6a4c838 | |
parent | d5e85c7f25cadeb3e78a1ed06960757be539ea48 (diff) |
Bahamut now has support for halfops.
-rw-r--r-- | modules/protocol/bahamut.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/protocol/bahamut.cpp b/modules/protocol/bahamut.cpp index 7f70e6da8..6d14daba2 100644 --- a/modules/protocol/bahamut.cpp +++ b/modules/protocol/bahamut.cpp @@ -524,6 +524,7 @@ class ProtoBahamut : public Module /* v/h/o/a/q */ ModeManager::AddChannelMode(new ChannelModeStatus("VOICE", 'v', '+', 0)); + ModeManager::AddChannelMode(new ChannelModeStatus("HALFOP", 'h', '%', 1)); ModeManager::AddChannelMode(new ChannelModeStatus("OP", 'o', '@', 1)); /* Add channel modes */ |