refactor(commands/voice/queue): tweak descriptions

This commit is contained in:
Ryan 2025-01-01 16:19:13 -05:00
parent d0ddb36812
commit c9daa241d4
Signed by: ErrorNoInternet
GPG Key ID: 2486BFB7B1E6A4A3

View File

@ -26,7 +26,7 @@ async def queue_or_play(message):
"--volume", "--volume",
default=50, default=50,
type=lambda v: arguments.range_type(v, min=0, max=150), 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( parser.add_argument(
"-i", "-i",
@ -38,7 +38,7 @@ async def queue_or_play(message):
"-m", "-m",
"--remove-multiple", "--remove-multiple",
action="store_true", action="store_true",
help="continue removing queued songs after finding a match", help="continue removing queued after finding a match",
) )
parser.add_argument( parser.add_argument(
"-c", "-c",