From: Sadie Powell Date: Mon, 1 Mar 2021 16:21:15 +0000 (+0000) Subject: Fix sending Q-line notices to snomask `a` instead of snomask `x`. X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=d14f590e6f9080dabea7efa8e655763971b16953;p=user%2Fhenk%2Fcode%2Finspircd.git Fix sending Q-line notices to snomask `a` instead of snomask `x`. --- 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()); }