diff options
| author | 2014-06-26 00:10:46 +0200 | |
|---|---|---|
| committer | 2014-06-26 00:10:46 +0200 | |
| commit | 68dba8dc27303b118fb5c7266a8459ca8ef68366 (patch) | |
| tree | 0a23d34d8a198290b520e00baef1cebb455fb87c /src/modules | |
| parent | m_chghost Allow ulined servers to change the host of unregistered users (for ... (diff) | |
| parent | Fix copy/paste error in m_denychans. (diff) | |
Merge pull request #879 from SaberUK/insp20+fix-denychans
Fix copy/paste error in m_denychans.
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/m_denychans.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_denychans.cpp b/src/modules/m_denychans.cpp index e774e92c8..39d9e0d34 100644 --- a/src/modules/m_denychans.cpp +++ b/src/modules/m_denychans.cpp @@ -57,7 +57,7 @@ class ModuleDenyChannels : public Module if (InspIRCd::Match(redirect, j->second->getString("name"))) { bool goodchan = false; - ConfigTagList goodchans = ServerInstance->Config->ConfTags("badchan"); + ConfigTagList goodchans = ServerInstance->Config->ConfTags("goodchan"); for (ConfigIter k = goodchans.first; k != goodchans.second; ++k) { if (InspIRCd::Match(redirect, k->second->getString("name"))) |
