about summary refs log tree commit diff
path: root/command.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-09 15:35:02 -0500
committerJune McEnroe <june@causal.agency>2020-02-09 16:19:36 -0500
commit2bb3590de9eb7f9195c32fb94491515ac395f1db (patch)
treee9127d76191d13fa15183e045f76750379fbb785 /command.c
parentAdd copy of GPL (diff)
downloadcatgirl-2bb3590de9eb7f9195c32fb94491515ac395f1db.tar.gz
catgirl-2bb3590de9eb7f9195c32fb94491515ac395f1db.zip
Add /msg
Services tend to tell you to use /msg so it definitely needs to exist.
Diffstat (limited to 'command.c')
-rw-r--r--command.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/command.c b/command.c
index 44d0d54..6d9ef9b 100644
--- a/command.c
+++ b/command.c
@@ -71,6 +71,13 @@ static void commandMe(size_t id, char *params) {
 	commandPrivmsg(id, buf);
 }
 
+static void commandMsg(size_t id, char *params) {
+	(void)id;
+	char *nick = strsep(&params, " ");
+	if (!params) return;
+	ircFormat("PRIVMSG %s :%s\r\n", nick, params);
+}
+
 static void commandJoin(size_t id, char *params) {
 	size_t count = 1;
 	if (params) {
@@ -186,6 +193,7 @@ static const struct Handler {
 	{ "/help", commandHelp },
 	{ "/join", commandJoin },
 	{ "/me", commandMe },
+	{ "/msg", commandMsg },
 	{ "/names", commandNames },
 	{ "/nick", commandNick },
 	{ "/notice", commandNotice },