From 5b30919d864019f8269d94f3c087ffea6274b79f Mon Sep 17 00:00:00 2001 From: Joscha Date: Fri, 17 Aug 2018 18:52:33 +0000 Subject: [PATCH] Clean up command aliases in help message --- argondjbot.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/argondjbot.py b/argondjbot.py index 3a2f6a1..83b3c54 100644 --- a/argondjbot.py +++ b/argondjbot.py @@ -243,19 +243,19 @@ class Playlist: class ArgonDJBot(yaboli.Bot): COMMANDS = ( "Simply playing videos:\n" - "!queue, !q - add videos to the queue\n" - "!skip, !s - skip the currently playing video\n" + "!queue - add videos to the queue (alias: !q)\n" + "!skip - skip the currently playing video (alias: !s)\n" "\n" "Advanced queue manipulation:\n" - "!list, !l - display a list of currently queued videos\n" - "!detail, !info, !show - show more details for videos in the queue\n" - "!delete, !del, !d - deletes video at that index in the queue\n" - "!insert, !ins, !i before|after - insert videos in the queue\n" - "!deleteall, !dall, !da, !flush - remove the whole queue\n" + "!list - display a list of currently queued videos (alias: !l)\n" + "!detail - show more details for videos in the queue (aliases: !info, !show)\n" + "!delete - deletes video at that index in the queue (aliases: !del, !d)\n" + "!insert before|after - insert videos in the queue (aliases: !ins, !i)\n" + "!deleteall - remove the whole queue (aliases: !dall, !d, !flush)\n" "\n" "Fun stuff:\n" - "!dramaticskip, !dskip, !ds - dramatic version of !skip\n" - "!videoskip, !vskip, !vs - play a short video before the next queued video starts\n" + "!dramaticskip - dramatic version of !skip (aliases: !dskip, !ds)\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 to queue a new video."