diff options
| author | 2009-04-29 02:43:16 +0000 | |
|---|---|---|
| committer | 2009-04-29 02:43:16 +0000 | |
| commit | d2a71fd3447c8bac65cc26077e2b9fc3fb0b28a7 (patch) | |
| tree | 648fcf8fa6ca20ab599d618fd33433a761639d98 /src/channels.cpp | |
| parent | Fix OnSetAway hook denying remote users' change rather than local users (diff) | |
Overloading SetMode seems to cause the compiler to interpret "" as a bool and not a string. Fixes bug #849
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11335 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/channels.cpp')
| -rw-r--r-- | src/channels.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index c8334d42e..a6ed3406d 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -36,7 +36,7 @@ void Channel::SetMode(char mode,bool mode_on) modes[mode-65] = mode_on; } -void Channel::SetMode(char mode, std::string parameter) +void Channel::SetModeParam(char mode, std::string parameter) { CustomModeList::iterator n = custom_mode_params.find(mode); // always erase, even if changing, so that the map gets the new value |
