diff options
author | June McEnroe <june@causal.agency> | 2021-07-06 12:35:54 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-07-13 15:16:22 -0400 |
commit | ddb331d8dcb4f4cc570862ce88711037fcf3194c (patch) | |
tree | 997a1a41ecd7f4ed8f68d1242002dc96cefa1946 /command.c | |
parent | Condense markup for ignore/highlight format (diff) | |
download | catgirl-ddb331d8dcb4f4cc570862ce88711037fcf3194c.tar.gz catgirl-ddb331d8dcb4f4cc570862ce88711037fcf3194c.zip |
Use CS command for paramless /op and /voice
Should match the actual /cs command.
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/command.c b/command.c index 3392fa9..73712a5 100644 --- a/command.c +++ b/command.c @@ -264,7 +264,7 @@ static void commandOp(uint id, char *params) { if (params) { channelListMode(id, '+', 'o', params); } else { - ircFormat("PRIVMSG ChanServ :OP %s\r\n", idNames[id]); + ircFormat("CS OP %s\r\n", idNames[id]); } } @@ -276,7 +276,7 @@ static void commandVoice(uint id, char *params) { if (params) { channelListMode(id, '+', 'v', params); } else { - ircFormat("PRIVMSG ChanServ :VOICE %s\r\n", idNames[id]); + ircFormat("CS VOICE %s\r\n", idNames[id]); } } |