missing commands

This commit is contained in:
Eric Mertens 2025-01-29 11:13:20 -08:00
parent ef223f9cc1
commit bdf7202e7d
2 changed files with 6 additions and 0 deletions

View File

@ -263,6 +263,7 @@ enum class IrcCommand
CAP,
CHGHOST,
ERROR,
INVITE,
JOIN,
KICK,
MODE,
@ -274,5 +275,7 @@ enum class IrcCommand
PRIVMSG,
QUIT,
SETNAME,
TAGMSG,
TOPIC,
WALLOPS,
};

View File

@ -265,6 +265,7 @@ BOUNCER, IrcCommand::BOUNCER
CAP, IrcCommand::CAP, 1, 15
CHGHOST, IrcCommand::CHGHOST, 2, 2
ERROR, IrcCommand::ERROR, 1, 1
INVITE, IrcCommand::INVITE, 2, 2
JOIN, IrcCommand::JOIN, 1, 3
KICK, IrcCommand::KICK, 3, 3
MODE, IrcCommand::MODE, 2, 15
@ -276,4 +277,6 @@ PONG, IrcCommand::PONG, 1, 2
PRIVMSG, IrcCommand::PRIVMSG, 2, 2
QUIT, IrcCommand::QUIT, 1, 1
SETNAME, IrcCommand::SETNAME, 1, 1
TAGMSG, IrcCommand::TAGMSG, 1, 1
TOPIC, IrcCommand::TOPIC, 2, 2
WALLOPS, IrcCommand::WALLOPS, 1, 1