diff options
author | Sadie Powell <sadie@witchery.services> | 2025-04-22 17:36:26 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-04-22 18:16:31 +0100 |
commit | f3629598347763c984d03ee70235133c45dd9908 (patch) | |
tree | 9aa5190273a40005a4c730c06258b1ee3ae703c7 /modules/chanserv/cs_log.cpp | |
parent | f5a85c69d225edaed4e11eb4c2b27d66ebc5195e (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.cpp | 4 |
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; } |