1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-15 16:56:35 +01:00

add mod and unmod commands

This commit is contained in:
Jfreegman
2015-05-29 02:00:18 -04:00
parent 526bd02189
commit 9cd8afe90a
7 changed files with 130 additions and 33 deletions

View File

@@ -88,12 +88,14 @@ static struct cmd_func group_commands[] = {
{ "/chatid", cmd_chatid },
{ "/ignore", cmd_ignore },
{ "/kick", cmd_kick },
{ "/mod", cmd_mod },
{ "/passwd", cmd_set_passwd },
{ "/peerlimit", cmd_set_peerlimit },
{ "/privacy", cmd_set_privacy },
{ "/rejoin", cmd_rejoin },
{ "/topic", cmd_set_topic },
{ "/unignore", cmd_unignore },
{ "/unmod", cmd_unmod },
#ifdef AUDIO
{ "/mute", cmd_mute },
{ "/sense", cmd_sense },
@@ -101,17 +103,19 @@ static struct cmd_func group_commands[] = {
{ NULL, NULL },
};
#define NUM_SPECIAL_COMMANDS 9
#define NUM_SPECIAL_COMMANDS 11
static const char special_commands[NUM_SPECIAL_COMMANDS][MAX_CMDNAME_SIZE] = {
"/gaccept",
"/group",
"/ignore",
"/kick",
"/mod",
"/nick",
"/note",
"/passwd",
"/topic",
"/unignore"
"/unignore",
"/unmod",
};
/* return true if input command is in the special_commands array. False otherwise.*/