Channel mode handling changed - there's no more mode_xxx fields in

channel structure, but instead just one mode string field. Also
handling half-ops (+h) should work right.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@617 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-08-20 07:17:13 +00:00 committed by cras
commit 67cc9af1bd
15 changed files with 351 additions and 232 deletions

View file

@ -359,7 +359,7 @@ static void event_mode(const char *data, IRC_SERVER_REC *server,
show = TRUE;
nick++;
} else {
if (HAS_MODE_ARG(*mode) && *nick != NULL)
if (HAS_MODE_ARG(type, *mode) && *nick != NULL)
nick++;
show = TRUE;
}