From d53d919bd871bde1de26312257ada58463d74501 Mon Sep 17 00:00:00 2001 From: Dylan Frank Date: Sat, 31 Mar 2018 14:51:51 -0700 Subject: [PATCH] Prioritize checking for +ikl last to match previous behavior (#1474). --- src/coremods/core_channel/core_channel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/coremods/core_channel/core_channel.cpp b/src/coremods/core_channel/core_channel.cpp index b69483166..ccf4d1a6e 100644 --- a/src/coremods/core_channel/core_channel.cpp +++ b/src/coremods/core_channel/core_channel.cpp @@ -269,6 +269,7 @@ class CoreModChannel : public Module, public CheckExemption::EventListener void Prioritize() CXX11_OVERRIDE { ServerInstance->Modules.SetPriority(this, I_OnPostJoin, PRIORITY_FIRST); + ServerInstance->Modules.SetPriority(this, I_OnUserPreJoin, PRIORITY_LAST); } Version GetVersion() CXX11_OVERRIDE -- 2.39.5