diff options
| author | 2005-12-12 18:19:33 +0000 | |
|---|---|---|
| committer | 2005-12-12 18:19:33 +0000 | |
| commit | 3a2679d0e4c41c326cecdcd2f847bdcc4f2681ca (patch) | |
| tree | ee2505f73024ad1ed1e57e3f98d7d8bfd1031400 /src/channels.cpp | |
| parent | New version that doesnt yield() any more (diff) | |
Removal of some trivial debug output
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2355 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/channels.cpp')
| -rw-r--r-- | src/channels.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index 6af23d3b0..ce4718410 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -168,8 +168,7 @@ void chanrec::SetCustomModeParam(char mode,char* parameter,bool mode_on) bool chanrec::IsCustomModeSet(char mode) { - log(DEBUG,"Checking ISCustomModeSet: %c %s",mode,this->custom_modes); - return (strchr(this->custom_modes,mode) != 0); + return (strchr(this->custom_modes,mode)); } std::string chanrec::GetModeParameter(char mode) |
