X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_hidechans.cpp;h=42614e937c877605fc2f272bb1ece6e9d5c8477e;hb=192ae99685903cfb71bbf70edc450c4a6314621e;hp=2c3769f7ada7989fb61b462c70139ec75b0784b9;hpb=f2acdbc3820f0f4f5ef76a0a64e73d2a320df91f;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_hidechans.cpp b/src/modules/m_hidechans.cpp index 2c3769f7a..42614e937 100644 --- a/src/modules/m_hidechans.cpp +++ b/src/modules/m_hidechans.cpp @@ -12,9 +12,6 @@ */ #include "inspircd.h" -#include "users.h" -#include "channels.h" -#include "modules.h" /* $ModDesc: Provides support for hiding channels with user mode +I */ @@ -25,7 +22,7 @@ class HideChans : public ModeHandler public: HideChans(InspIRCd* Instance) : ModeHandler(Instance, 'I', 0, 0, false, MODETYPE_USER, false) { } - ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) + ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding) { /* Only opers can change other users modes */ if (source != dest) @@ -62,7 +59,7 @@ class ModuleHideChans : public Module { hm = new HideChans(ServerInstance); - if (!ServerInstance->AddMode(hm, 'I')) + if (!ServerInstance->AddMode(hm)) throw ModuleException("Could not add new modes!"); } @@ -82,7 +79,7 @@ class ModuleHideChans : public Module return Version(1,1,0,0,VF_COMMON|VF_VENDOR,API_VERSION); } - int OnWhoisLine(userrec* user, userrec* dest, int &numeric, std::string &text) + int OnWhoisLine(User* user, User* dest, int &numeric, std::string &text) { /* Dont display channels if they have +I set and the * person doing the WHOIS is not an oper