From: Dylan Frank Date: Sat, 31 Mar 2018 21:51:51 +0000 (-0700) Subject: Prioritize checking for +ikl last to match previous behavior (#1474). X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=d53d919bd871bde1de26312257ada58463d74501;p=user%2Fhenk%2Fcode%2Finspircd.git Prioritize checking for +ikl last to match previous behavior (#1474). --- 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