diff options
| author | 2024-12-10 14:04:16 +0000 | |
|---|---|---|
| committer | 2024-12-10 14:04:16 +0000 | |
| commit | 5084eca9bae459d38fb509e56f7b0e67623e7f5e (patch) | |
| tree | a9cbdc216e05cb6f5e73600edadbd2cdc509077b /src/modules/m_operprefix.cpp | |
| parent | Write the pid file earlier to avoid a crash. (diff) | |
Allow explicitly disabling the ojoin/operprefix prefix characters.
Diffstat (limited to 'src/modules/m_operprefix.cpp')
| -rw-r--r-- | src/modules/m_operprefix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_operprefix.cpp b/src/modules/m_operprefix.cpp index e1258ede0..272802e7f 100644 --- a/src/modules/m_operprefix.cpp +++ b/src/modules/m_operprefix.cpp @@ -38,7 +38,7 @@ public: OperPrefixMode(Module* Creator) : PrefixMode(Creator, "operprefix", 'y', OPERPREFIX_VALUE) { - prefix = ServerInstance->Config->ConfValue("operprefix")->getCharacter("prefix", '!'); + prefix = ServerInstance->Config->ConfValue("operprefix")->getCharacter("prefix", '!', true); ranktoset = ranktounset = std::numeric_limits<ModeHandler::Rank>::max(); } }; |
