MGranatels / IRC

4 stars 1 forks source link

Implementation Of BAN #52

Open MGranatels opened 1 year ago

MGranatels commented 1 year ago

Action BAN:

. In IRC, the BAN action refers to the act of banning a user from a channel. When a user is banned, they are not allowed to join the channel, and any attempts to join will be denied by the server.

To take in consideration:

  1. The hexchat already formats the ban command in the following way when inputed: If i input within a channel the following argument: /BAN

This will be the parsing output: 0 Split: MODE 1 Split: #hi 2 Split: +b 3 Split: fasfsa

  1. Basically it treats the ban command as a MODE instead of an Action, however we call it as an action.
MGranatels commented 1 year ago

Depending on Kick action.

Also issue with the second check point