mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
m_deaf Fix inverted check
This commit is contained in:
parent
e093134393
commit
0fda94db30
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user