feat: enchance autocompletion & more #103

Merged
Anri merged 6 commits from enchance/music into main 2023-08-08 22:28:53 +02:00
Showing only changes of commit 010b40800b - Show all commits

View file

@ -1,4 +1,5 @@
import { SlashCommandBuilder } from "@discordjs/builders";
import { Player, SearchResult, useMainPlayer, useQueue } from "discord-player";
import {
AutocompleteInteraction,
ChatInputCommandInteraction,
@ -7,10 +8,9 @@ import {
GuildResolvable,
VoiceBasedChannel,
} from "discord.js";
import { Metadata } from "../../utils/metadata";
import { getLocale, getLocalizations } from "../../utils/locales";
import { Metadata } from "../../utils/metadata";
import { getFilename } from "../../utils/misc";
import { Player, QueryType, SearchResult, useMainPlayer, useQueue } from "discord-player";
export default {
scope: () => [],
@ -118,7 +118,6 @@ export default {
const result = await player
.search(query, {
requestedBy: interaction.user,
searchEngine: QueryType.YOUTUBE_SEARCH,
})
.then((x) => x);