about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-03-22 14:19:11 -0400
committerJune McEnroe <june@causal.agency>2020-03-22 14:19:11 -0400
commitccde1c2c8c712019ef0ea45e655fa988f56b984e (patch)
tree5b2bb4ad6a9a36a9c2a8864cbc576a7d51aafbd1
parentHandle RPL_CHANNELMODEIS (diff)
downloadcatgirl-ccde1c2c8c712019ef0ea45e655fa988f56b984e.tar.gz
catgirl-ccde1c2c8c712019ef0ea45e655fa988f56b984e.zip
Add /say
-rw-r--r--catgirl.14
-rw-r--r--command.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/catgirl.1 b/catgirl.1
index a69d282..138b982 100644
--- a/catgirl.1
+++ b/catgirl.1
@@ -1,4 +1,4 @@
-.Dd February 29, 2020
+.Dd March 22, 2020
 .Dt CATGIRL 1
 .Os
 .
@@ -270,6 +270,8 @@ Start a private conversation.
 Quit IRC.
 .It Ic /quote Ar command
 Send a raw IRC command.
+.It Ic /say Ar message
+Send a regular message.
 .It Ic /topic Op Ar topic
 Show or set the topic of the channel.
 .It Ic /whois Ar nick
diff --git a/command.c b/command.c
index 701486b..3ef4d5d 100644
--- a/command.c
+++ b/command.c
@@ -357,6 +357,7 @@ static const struct Handler {
 	{ "/query", .fn = commandQuery, .restricted = true },
 	{ "/quit", .fn = commandQuit },
 	{ "/quote", .fn = commandQuote, .restricted = true },
+	{ "/say", .fn = commandPrivmsg },
 	{ "/topic", .fn = commandTopic },
 	{ "/unban", .fn = commandUnban },
 	{ "/unexcept", .fn = commandUnexcept },