MODEACTION_ALLOW was being used instead of DENY, fixes bug #490

git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8822 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2008-02-04 15:44:02 +00:00
parent 5c499c5949
commit 5eb3d1a505

View File

@ -79,7 +79,7 @@ class CensorChannel : public ModeHandler
}
}
return MODEACTION_ALLOW;
return MODEACTION_DENY;
}
};