modes: Fix error with cmodes being sent badly

This commit is contained in:
Daniel Oaks 2016-10-23 00:49:33 +10:00
parent 517893065b
commit c599c8f599
1 changed files with 1 additions and 1 deletions

View File

@ -513,7 +513,7 @@ func cmodeHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool {
change := channel.applyModeMember(client, change.mode, change.op, change.arg)
if change != nil {
applied = append(changes, change)
applied = append(applied, change)
}
}
}