You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awaitctx.EditResponseAsync(newDiscordWebhookBuilder().WithContent($"Playing {player!.CurrentTrack!.Info.Title.Bold} from {player.CurrentTrack.Info.Author.Italic}"));
277
280
}
278
281
catch(ArgumentNullException)
279
282
{
280
-
awaitctx.EditResponseAsync(newDiscordWebhookBuilder().WithContent("Make sure you're connected to a channel."));
283
+
awaitctx.EditResponseAsync(newDiscordWebhookBuilder().WithContent("Make sure you're connected to a channel. And you added songs to the queue."));
281
284
}
282
285
catch(Exceptionex)
283
286
{
@@ -383,7 +386,7 @@ public async Task ShuffleQueueAsync(InteractionContext ctx)
383
386
}
384
387
catch(ArgumentNullException)
385
388
{
386
-
awaitctx.EditResponseAsync(newDiscordWebhookBuilder().WithContent("Make sure you're connected to a channel."));
389
+
awaitctx.EditResponseAsync(newDiscordWebhookBuilder().WithContent("Make sure you're connected to a channel and have songs in the queue."));
387
390
}
388
391
catch(Exceptionex)
389
392
{
@@ -405,7 +408,7 @@ public async Task ClearQueueAsync(InteractionContext ctx)
405
408
}
406
409
catch(ArgumentNullException)
407
410
{
408
-
awaitctx.EditResponseAsync(newDiscordWebhookBuilder().WithContent("Make sure you're connected to a channel."));
411
+
awaitctx.EditResponseAsync(newDiscordWebhookBuilder().WithContent("Make sure you're connected to a channel and have songs in the queue."));
409
412
}
410
413
catch(Exceptionex)
411
414
{
@@ -427,7 +430,7 @@ public async Task ReverseQueueAsync(InteractionContext ctx)
427
430
}
428
431
catch(ArgumentNullException)
429
432
{
430
-
awaitctx.EditResponseAsync(newDiscordWebhookBuilder().WithContent("Make sure you're connected to a channel."));
433
+
awaitctx.EditResponseAsync(newDiscordWebhookBuilder().WithContent("Make sure you're connected to a channel and have songs in the queue."));
0 commit comments