Clean up command aliases in help message
This commit is contained in:
parent
235865e74e
commit
5b30919d86
1 changed files with 9 additions and 9 deletions
|
|
@ -243,19 +243,19 @@ class Playlist:
|
||||||
class ArgonDJBot(yaboli.Bot):
|
class ArgonDJBot(yaboli.Bot):
|
||||||
COMMANDS = (
|
COMMANDS = (
|
||||||
"Simply playing videos:\n"
|
"Simply playing videos:\n"
|
||||||
"!queue, !q <urls or ids> - add videos to the queue\n"
|
"!queue <urls or ids> - add videos to the queue (alias: !q)\n"
|
||||||
"!skip, !s - skip the currently playing video\n"
|
"!skip - skip the currently playing video (alias: !s)\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Advanced queue manipulation:\n"
|
"Advanced queue manipulation:\n"
|
||||||
"!list, !l - display a list of currently queued videos\n"
|
"!list - display a list of currently queued videos (alias: !l)\n"
|
||||||
"!detail, !info, !show <indices> - show more details for videos in the queue\n"
|
"!detail <indices> - show more details for videos in the queue (aliases: !info, !show)\n"
|
||||||
"!delete, !del, !d <index> - deletes video at that index in the queue\n"
|
"!delete <index> - deletes video at that index in the queue (aliases: !del, !d)\n"
|
||||||
"!insert, !ins, !i before|after <index> <urls or ids> - insert videos in the queue\n"
|
"!insert before|after <index> <urls or ids> - insert videos in the queue (aliases: !ins, !i)\n"
|
||||||
"!deleteall, !dall, !da, !flush - remove the whole queue\n"
|
"!deleteall - remove the whole queue (aliases: !dall, !d, !flush)\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Fun stuff:\n"
|
"Fun stuff:\n"
|
||||||
"!dramaticskip, !dskip, !ds - dramatic version of !skip\n"
|
"!dramaticskip - dramatic version of !skip (aliases: !dskip, !ds)\n"
|
||||||
"!videoskip, !vskip, !vs - play a short video before the next queued video starts\n"
|
"!videoskip - play a short video before the next queued video starts (aliases: !vskip, !vs)\n"
|
||||||
)
|
)
|
||||||
|
|
||||||
SHORT_HELP = "Keeps track of the video queue. !q <link> to queue a new video."
|
SHORT_HELP = "Keeps track of the video queue. !q <link> to queue a new video."
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue