From 988568f3d1cc2247fa3adbadd8daa0ee175fcb1d Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 12 Mar 2006 14:26:15 +0000 Subject: *NEEDS TESTING* changed binarymodes to use the custom_modes entries git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3691 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/cmd_notice.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cmd_notice.cpp') diff --git a/src/cmd_notice.cpp b/src/cmd_notice.cpp index 58800ccc0..6e894e6a4 100644 --- a/src/cmd_notice.cpp +++ b/src/cmd_notice.cpp @@ -94,12 +94,12 @@ void cmd_notice::Handle (char **parameters, int pcnt, userrec *user) { if (IS_LOCAL(user)) { - if ((chan->binarymodes & CM_NOEXTERNAL) && (!chan->HasUser(user))) + if ((chan->custom_modes[CM_NOEXTERNAL]) && (!chan->HasUser(user))) { WriteServ(user->fd,"404 %s %s :Cannot send to channel (no external messages)", user->nick, chan->name); return; } - if ((chan->binarymodes & CM_MODERATED) && (cstatus(user,chan)custom_modes[CM_MODERATED]) && (cstatus(user,chan)fd,"404 %s %s :Cannot send to channel (+m)", user->nick, chan->name); return; -- cgit v1.2.3