summaryrefslogtreecommitdiff
path: root/src/coremods
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2021-03-01 16:21:15 +0000
committerSadie Powell <sadie@witchery.services>2021-03-01 16:21:15 +0000
commitd14f590e6f9080dabea7efa8e655763971b16953 (patch)
tree28fe2a145e4e9be78511a626a6f0d3fb355f71d8 /src/coremods
parent85a4184ab473c407fb07cc46d73de70d2897157e (diff)
Fix sending Q-line notices to snomask `a` instead of snomask `x`.
Diffstat (limited to 'src/coremods')
-rw-r--r--src/coremods/core_xline/core_xline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_xline/core_xline.cpp b/src/coremods/core_xline/core_xline.cpp
index e743c7e7f..32c1dea3f 100644
--- a/src/coremods/core_xline/core_xline.cpp
+++ b/src/coremods/core_xline/core_xline.cpp
@@ -98,7 +98,7 @@ class CoreModXLine : public Module
// A Q-line matched the new nick, tell opers if the user is registered
if (user->registered == REG_ALL)
{
- ServerInstance->SNO->WriteGlobalSno('a', "Q-lined nickname %s from %s: %s",
+ ServerInstance->SNO->WriteGlobalSno('x', "Q-lined nickname %s from %s: %s",
newnick.c_str(), user->GetFullRealHost().c_str(), xline->reason.c_str());
}