diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-08-30 16:30:52 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2016-08-30 16:30:52 +0200 |
commit | 0fda94db3054ad74668dec1e56d4aa4a029ef133 (patch) | |
tree | bd634e0d985cf8cb6b4c19324d959e05c828dfba /src | |
parent | e0931343939bc15ea9aaa884eab61d80827074c6 (diff) |
m_deaf Fix inverted check
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_deaf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_deaf.cpp b/src/modules/m_deaf.cpp index fd9b322c0..9e84bb95a 100644 --- a/src/modules/m_deaf.cpp +++ b/src/modules/m_deaf.cpp @@ -73,7 +73,7 @@ class ModuleDeaf : public Module * If we have no bypasschars_uline in config, and this is a bypasschar (regular) * Than it is obviously going to get through +d, no build required */ - if (!deaf_bypasschars_uline.empty() && is_bypasschar) + if (deaf_bypasschars_uline.empty() && is_bypasschar) return MOD_RES_PASSTHRU; const Channel::MemberMap& ulist = chan->GetUsers(); |