Author: Bleep <tomh@inxpress.net>
[ircu2.10.12-pk.git] / ircd / channel.c
index 91044d00c43638fcabc49e512b9fc0934d75abfe..651cdd61053ba148b11f7ecbb62420c3d5b6d5fc 100644 (file)
@@ -728,13 +728,11 @@ void send_channel_modes(aClient *cptr, aChannel *chptr)
          if (new_mode)         /* Do we have a nick with a new mode ? */
          {
            new_mode = 0;
-            if (lp1->flags & (CHFL_CHANOP | CHFL_VOICE)) {
-             sendbuf[sblen++] = ':';
-             if (lp1->flags & CHFL_CHANOP)
-               sendbuf[sblen++] = 'o';
-             if (lp1->flags & CHFL_VOICE)
-               sendbuf[sblen++] = 'v';
-            }
+           sendbuf[sblen++] = ':';
+           if (lp1->flags & CHFL_CHANOP)
+             sendbuf[sblen++] = 'o';
+           if (lp1->flags & CHFL_VOICE)
+             sendbuf[sblen++] = 'v';
          }
        }
        if (full)