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_l.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_l.cpp')
| -rw-r--r-- | src/modes/cmode_l.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modes/cmode_l.cpp b/src/modes/cmode_l.cpp index 154186248..5c9db31df 100644 --- a/src/modes/cmode_l.cpp +++ b/src/modes/cmode_l.cpp @@ -39,7 +39,7 @@ bool ModeChannelLimit::CheckTimeStamp(time_t, time_t, const std::string &their_p return (atoi(their_param.c_str()) < atoi(our_param.c_str())); } -ModeAction ModeChannelLimit::OnModeChange(User*, User*, Channel* channel, std::string ¶meter, bool adding) +ModeAction ModeChannelLimit::OnModeChange(User*, User*, Channel* channel, std::string ¶meter, bool adding, bool servermode) { if (adding) { |
