fix(commands/voice/queue): fix --remove-multiple

This commit is contained in:
Ryan 2024-12-31 20:37:49 -05:00
parent e85d90fb36
commit 99f5d3d338
Signed by: ErrorNoInternet
GPG Key ID: 2486BFB7B1E6A4A3

View File

@ -104,7 +104,7 @@ async def queue_or_play(message):
if q := args.remove_queuer: if q := args.remove_queuer:
if q == queued.queuer: if q == queued.queuer:
targets.append(queued) targets.append(queued)
if args.remove_multiple: if not args.remove_multiple:
targets = targets[:1] targets = targets[:1]
for target in targets: for target in targets: