You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
based on discussions with Jobe @ #evilnet afternet several days ago regarding HIS_MODEWHO:FALSE showing ircop nickname in the channel when issuing /opmode or /clearmode
here is the lines need to be edited in the channel.c
/* Ok, if we were given the OPMODE flag, or its a server, hide the source.
*/
if (feature_bool(FEAT_HIS_MODEWHO) &&
(mbuf->mb_dest & MODEBUF_DEST_OPMODE ||
IsServer(mbuf->mb_source) ||
IsMe(mbuf->mb_source)))
app_source = &his;
else {
if (IsUser(mbuf->mb_source) && (mbuf->mb_dest & MODEBUF_DEST_OPMODE))
app_source = cli_user(mbuf->mb_source)->server;
else
app_source = mbuf->mb_source;
}
it will make /opmode or /clearmode appear as a server which the ircop connected
thank you.
The text was updated successfully, but these errors were encountered:
based on discussions with Jobe @ #evilnet afternet several days ago regarding HIS_MODEWHO:FALSE showing ircop nickname in the channel when issuing /opmode or /clearmode
here is the lines need to be edited in the channel.c
/* Ok, if we were given the OPMODE flag, or its a server, hide the source.
*/
if (feature_bool(FEAT_HIS_MODEWHO) &&
(mbuf->mb_dest & MODEBUF_DEST_OPMODE ||
IsServer(mbuf->mb_source) ||
IsMe(mbuf->mb_source)))
app_source = &his;
else {
if (IsUser(mbuf->mb_source) && (mbuf->mb_dest & MODEBUF_DEST_OPMODE))
app_source = cli_user(mbuf->mb_source)->server;
else
app_source = mbuf->mb_source;
}
it will make /opmode or /clearmode appear as a server which the ircop connected
thank you.
The text was updated successfully, but these errors were encountered: