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, CAP,
CHGHOST, CHGHOST,
ERROR, ERROR,
INVITE,
JOIN, JOIN,
KICK, KICK,
MODE, MODE,
@ -274,5 +275,7 @@ enum class IrcCommand
PRIVMSG, PRIVMSG,
QUIT, QUIT,
SETNAME, SETNAME,
TAGMSG,
TOPIC, TOPIC,
WALLOPS,
}; };

View File

@ -265,6 +265,7 @@ BOUNCER, IrcCommand::BOUNCER
CAP, IrcCommand::CAP, 1, 15 CAP, IrcCommand::CAP, 1, 15
CHGHOST, IrcCommand::CHGHOST, 2, 2 CHGHOST, IrcCommand::CHGHOST, 2, 2
ERROR, IrcCommand::ERROR, 1, 1 ERROR, IrcCommand::ERROR, 1, 1
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
MODE, IrcCommand::MODE, 2, 15 MODE, IrcCommand::MODE, 2, 15
@ -276,4 +277,6 @@ PONG, IrcCommand::PONG, 1, 2
PRIVMSG, IrcCommand::PRIVMSG, 2, 2 PRIVMSG, IrcCommand::PRIVMSG, 2, 2
QUIT, IrcCommand::QUIT, 1, 1 QUIT, IrcCommand::QUIT, 1, 1
SETNAME, IrcCommand::SETNAME, 1, 1 SETNAME, IrcCommand::SETNAME, 1, 1
TAGMSG, IrcCommand::TAGMSG, 1, 1
TOPIC, IrcCommand::TOPIC, 2, 2 TOPIC, IrcCommand::TOPIC, 2, 2
WALLOPS, IrcCommand::WALLOPS, 1, 1