diff options
| author | 2008-02-18 16:55:27 +0000 | |
|---|---|---|
| committer | 2008-02-18 16:55:27 +0000 | |
| commit | 32a26fa539242d009ffab01e09cafdaba9270dac (patch) | |
| tree | cef3ba7e424faa783c67689ec22838185eef752b /src/modes/cmode_n.cpp | |
| parent | Merge in patch by Darom that fixes race condition when unloading m_mysql.so t... (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 'src/modes/cmode_n.cpp')
| -rw-r--r-- | src/modes/cmode_n.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modes/cmode_n.cpp b/src/modes/cmode_n.cpp index cba2f38d2..0f3607566 100644 --- a/src/modes/cmode_n.cpp +++ b/src/modes/cmode_n.cpp @@ -21,7 +21,7 @@ ModeChannelNoExternal::ModeChannelNoExternal(InspIRCd* Instance) : ModeHandler(I { } -ModeAction ModeChannelNoExternal::OnModeChange(User*, User*, Channel* channel, std::string&, bool adding) +ModeAction ModeChannelNoExternal::OnModeChange(User*, User*, Channel* channel, std::string&, bool adding, bool servermode) { if (channel->modes[CM_NOEXTERNAL] != adding) { |
