This commit is contained in:
Eric Mertens 2025-01-29 16:32:08 -08:00
parent a9efb96837
commit 5f32505b93
2 changed files with 2 additions and 0 deletions

View File

@ -266,6 +266,7 @@ enum class IrcCommand
INVITE, INVITE,
JOIN, JOIN,
KICK, KICK,
KILL,
MODE, MODE,
NICK, NICK,
NOTICE, NOTICE,

View File

@ -268,6 +268,7 @@ ERROR, IrcCommand::ERROR, 1, 1
INVITE, IrcCommand::INVITE, 2, 2 INVITE, IrcCommand::INVITE, 2, 2
JOIN, IrcCommand::JOIN, 1, 3 JOIN, IrcCommand::JOIN, 1, 3
KICK, IrcCommand::KICK, 3, 3 KICK, IrcCommand::KICK, 3, 3
KILL, IrcCommand::KILL, 2, 2
MODE, IrcCommand::MODE, 2, 15 MODE, IrcCommand::MODE, 2, 15
NICK, IrcCommand::NICK, 1, 1 NICK, IrcCommand::NICK, 1, 1
NOTICE, IrcCommand::NOTICE, 2, 2 NOTICE, IrcCommand::NOTICE, 2, 2