mark unimplemented commands

This commit is contained in:
anon 2023-08-03 13:35:57 +02:00
parent 29b96f58e4
commit 0d7a6fe891

View File

@ -62,7 +62,7 @@ parse_command(char * cmd)
msgswp = remind(current_username); msgswp = remind(current_username);
ircmsg("%s: %s", current_username, msgswp); 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); } { ircmsg("%s: No future assignments", current_username); }
else if (strcmp(cmd, "dump") == 0) else if (strcmp(cmd, "dump") == 0)
{ {
@ -70,7 +70,7 @@ parse_command(char * cmd)
msgswp = dump(); msgswp = dump();
ircmsg(msgswp); ircmsg(msgswp);
} }
else if (strcmp(cmd, "reroll") == 0) else if (strcmp(cmd, "reroll") == 0) // TODO: implement
{ ircmsg("%s: No more rerolls possible", current_username); } { ircmsg("%s: No more rerolls possible", current_username); }
} }
else else
@ -91,7 +91,7 @@ parse_command(char * cmd)
msgswp = remind(creds.channel); msgswp = remind(creds.channel);
ircmsg("%s: %s", current_username, msgswp); 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>", ircmsg("%s: Submitting project link '%s' to <random janny>",
current_username, arg); current_username, arg);