From d14f590e6f9080dabea7efa8e655763971b16953 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 1 Mar 2021 16:21:15 +0000 Subject: [PATCH] Fix sending Q-line notices to snomask `a` instead of snomask `x`. --- src/coremods/core_xline/core_xline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } -- 2.39.2