diff options
author | Dylan Frank <b00mx0r@aureus.pw> | 2018-03-31 14:51:51 -0700 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-03-31 22:51:51 +0100 |
commit | d53d919bd871bde1de26312257ada58463d74501 (patch) | |
tree | 6b6fb74f7df343c820b1dfc75e25968668abf946 | |
parent | 802eed1734cf20e9a2549a5fe343d04c34e83a10 (diff) |
Prioritize checking for +ikl last to match previous behavior (#1474).
-rw-r--r-- | src/coremods/core_channel/core_channel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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 |