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_t.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_t.cpp')
| -rw-r--r-- | src/modes/cmode_t.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modes/cmode_t.cpp b/src/modes/cmode_t.cpp index 2d97baa7a..fa12da75a 100644 --- a/src/modes/cmode_t.cpp +++ b/src/modes/cmode_t.cpp @@ -21,7 +21,7 @@ ModeChannelTopicOps::ModeChannelTopicOps(InspIRCd* Instance) : ModeHandler(Insta { } -ModeAction ModeChannelTopicOps::OnModeChange(User*, User*, Channel* channel, std::string&, bool adding) +ModeAction ModeChannelTopicOps::OnModeChange(User*, User*, Channel* channel, std::string&, bool adding, bool servermode) { if (channel->modes[CM_TOPICLOCK] != adding) { |
