]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix sending Q-line notices to snomask `a` instead of snomask `x`.
authorSadie Powell <sadie@witchery.services>
Mon, 1 Mar 2021 16:21:15 +0000 (16:21 +0000)
committerSadie Powell <sadie@witchery.services>
Mon, 1 Mar 2021 16:21:15 +0000 (16:21 +0000)
src/coremods/core_xline/core_xline.cpp

index e743c7e7f13fd448131d6f0ff09d7915efbd362b..32c1dea3f0c4b2f4cf2449e4be724d9e5c36b890 100644 (file)
@@ -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());
                }