summaryrefslogtreecommitdiff
path: root/modules/chanserv/cs_log.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-04-22 17:36:26 +0100
committerSadie Powell <sadie@witchery.services>2025-04-22 18:16:31 +0100
commitf3629598347763c984d03ee70235133c45dd9908 (patch)
tree9aa5190273a40005a4c730c06258b1ee3ae703c7 /modules/chanserv/cs_log.cpp
parentf5a85c69d225edaed4e11eb4c2b27d66ebc5195e (diff)
Fix splitting in the middle of some command names.
Diffstat (limited to 'modules/chanserv/cs_log.cpp')
-rw-r--r--modules/chanserv/cs_log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/chanserv/cs_log.cpp b/modules/chanserv/cs_log.cpp
index f50cbf517..b33a1bf44 100644
--- a/modules/chanserv/cs_log.cpp
+++ b/modules/chanserv/cs_log.cpp
@@ -292,8 +292,8 @@ public:
" Would message any channel operators whenever someone used the "
"ACCESS command on ChanServ on the channel."
),
- source.command.upper().c_str(),
- source.command.upper().c_str());
+ source.command.nobreak().c_str(),
+ source.command.nobreak().c_str());
return true;
}