X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmodules%2Fm_banexception.cpp;h=82939231ff7e6d511f7fc8571cb819b937f054fe;hb=6050df73f498d05597fb37c6157868df1f6f4db2;hp=4d817f43bfcdcdd8d94ea901f1326dcc89eeded1;hpb=d0b4bb3811458aa335857514e4cbb95d5c84f433;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_banexception.cpp b/src/modules/m_banexception.cpp index 4d817f43b..82939231f 100644 --- a/src/modules/m_banexception.cpp +++ b/src/modules/m_banexception.cpp @@ -5,7 +5,7 @@ #include "channels.h" #include "modules.h" #include "mode.h" -#include "helperfuncs.h" + #include "inspircd.h" #include "u_listmode.h" @@ -18,7 +18,7 @@ // The +e channel mode takes a nick!ident@host, glob patterns allowed, // and if a user matches an entry on the +e list then they can join the channel, overriding any (+b) bans set on them -extern InspIRCd* ServerInstance; + class BanException : public ListModeBase { @@ -49,7 +49,7 @@ public: virtual void On005Numeric(std::string &output) { output.append(" EXCEPTS=e"); - ServerInstance->ModeGrok->InsertMode(output, "e", 1); + ServerInstance->Modes->InsertMode(output, "e", 1); } virtual int OnCheckBan(userrec* user, chanrec* chan)