From 6048d20b76dad3bc9683281f82a3c87cf3cc47f0 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Wed, 1 Jan 2025 16:19:13 -0500 Subject: [PATCH] refactor(commands/voice/queue): tweak descriptions --- commands/voice.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/voice.py b/commands/voice.py index 504fd72..b370ac4 100644 --- a/commands/voice.py +++ b/commands/voice.py @@ -26,7 +26,7 @@ async def queue_or_play(message): "--volume", default=50, type=lambda v: arguments.range_type(v, min=0, max=150), - help="the volume level (0 - 150)", + help="the volume level (0 - 150) for the specified song", ) parser.add_argument( "-i", @@ -38,7 +38,7 @@ async def queue_or_play(message): "-m", "--remove-multiple", action="store_true", - help="continue removing queued songs after finding a match", + help="continue removing queued after finding a match", ) parser.add_argument( "-c", @@ -103,7 +103,7 @@ async def queue_or_play(message): queued = players[message.guild.id].queue[i - 1] del players[message.guild.id].queue[i - 1] - await utils.reply(message, f"**x** {queued.format()}") + await utils.reply(message, f"**X** {queued.format()}") elif args.remove_title or args.remove_queuer: targets = [] for queued in players[message.guild.id].queue: