diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-18 16:55:27 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-18 16:55:27 +0000 |
commit | 32a26fa539242d009ffab01e09cafdaba9270dac (patch) | |
tree | cef3ba7e424faa783c67689ec22838185eef752b /include/modes/cmode_h.h | |
parent | 3ca314bffcd18c2cc965594b46ca058e57aaa7e9 (diff) |
Someone please help me fix the warnings in modules caused by this change. All mode handler OnMode events, ModeWatcher::BeforeMode/AfterMode, plus OnRawMode now have a bool servermode parameter
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8964 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/modes/cmode_h.h')
-rw-r--r-- | include/modes/cmode_h.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modes/cmode_h.h b/include/modes/cmode_h.h index 68ac89c4b..c8ea793c0 100644 --- a/include/modes/cmode_h.h +++ b/include/modes/cmode_h.h @@ -23,7 +23,7 @@ class ModeChannelHalfOp : public ModeHandler private: public: ModeChannelHalfOp(InspIRCd* Instance); - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding); + ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); std::string AddHalfOp(User *user,const char *dest,Channel *chan,int status); std::string DelHalfOp(User *user,const char *dest,Channel *chan,int status); ModePair ModeSet(User* source, User* dest, Channel* channel, const std::string ¶meter); |