diff options
author | June McEnroe <june@causal.agency> | 2020-03-22 14:19:11 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-03-22 14:19:11 -0400 |
commit | ccde1c2c8c712019ef0ea45e655fa988f56b984e (patch) | |
tree | 5b2bb4ad6a9a36a9c2a8864cbc576a7d51aafbd1 /command.c | |
parent | Handle RPL_CHANNELMODEIS (diff) | |
download | catgirl-ccde1c2c8c712019ef0ea45e655fa988f56b984e.tar.gz catgirl-ccde1c2c8c712019ef0ea45e655fa988f56b984e.zip |
Add /say
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 }, |