m_deaf Fix inverted check

This commit is contained in:
Attila Molnar 2016-08-30 16:30:52 +02:00
parent e093134393
commit 0fda94db30

View File

@ -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();