diff options
author | Sadie Powell <sadie@witchery.services> | 2021-03-01 16:21:15 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-03-01 16:21:15 +0000 |
commit | d14f590e6f9080dabea7efa8e655763971b16953 (patch) | |
tree | 28fe2a145e4e9be78511a626a6f0d3fb355f71d8 /src | |
parent | 85a4184ab473c407fb07cc46d73de70d2897157e (diff) |
Fix sending Q-line notices to snomask `a` instead of snomask `x`.
Diffstat (limited to 'src')
-rw-r--r-- | src/coremods/core_xline/core_xline.cpp | 2 |
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()); } |