mark unimplemented commands
This commit is contained in:
parent
29b96f58e4
commit
0d7a6fe891
@ -62,7 +62,7 @@ parse_command(char * cmd)
|
||||
msgswp = remind(current_username);
|
||||
ircmsg("%s: %s", current_username, msgswp);
|
||||
}
|
||||
else if (strcmp(cmd, "next") == 0)
|
||||
else if (strcmp(cmd, "next") == 0) // TODO: implement
|
||||
{ ircmsg("%s: No future assignments", current_username); }
|
||||
else if (strcmp(cmd, "dump") == 0)
|
||||
{
|
||||
@ -70,7 +70,7 @@ parse_command(char * cmd)
|
||||
msgswp = dump();
|
||||
ircmsg(msgswp);
|
||||
}
|
||||
else if (strcmp(cmd, "reroll") == 0)
|
||||
else if (strcmp(cmd, "reroll") == 0) // TODO: implement
|
||||
{ ircmsg("%s: No more rerolls possible", current_username); }
|
||||
}
|
||||
else
|
||||
@ -91,7 +91,7 @@ parse_command(char * cmd)
|
||||
msgswp = remind(creds.channel);
|
||||
ircmsg("%s: %s", current_username, msgswp);
|
||||
}
|
||||
else if (strcmp(cmd, "submit") == 0)
|
||||
else if (strcmp(cmd, "submit") == 0) // TODO: implement
|
||||
{
|
||||
ircmsg("%s: Submitting project link '%s' to <random janny>",
|
||||
current_username, arg);
|
||||
|
Reference in New Issue
Block a user