shuffle static method
Implementation
static Future<String> shuffle(CommandContext ctx) async {
final manager = ctx.client.getPlayerManager(ctx.guildId);
if (manager == null) {
return '❌ No player active!';
}
manager.shuffleQueue();
return '🔀 Queue shuffled!';
}