diff --git a/Lavalink/example.application.yml b/Lavalink/example.application.yml index c043ace92..aee9c3e57 100644 --- a/Lavalink/example.application.yml +++ b/Lavalink/example.application.yml @@ -101,7 +101,7 @@ lavalink: snapshot: false # set to true if you want to use snapshot builds. - dependency: "com.github.topi314.sponsorblock:sponsorblock-plugin:3.0.1" snapshot: false # set to true if you want to use snapshot builds. - - dependency: "dev.lavalink.youtube:youtube-plugin:1.5.1" + - dependency: "dev.lavalink.youtube:youtube-plugin:1.5.2" snapshot: false # set to true if you want to use snapshot builds. pluginsDir: './plugins' server: diff --git a/src/commands/config/Language.ts b/src/commands/config/Language.ts index ede0f2c6d..050160751 100644 --- a/src/commands/config/Language.ts +++ b/src/commands/config/Language.ts @@ -1,6 +1,6 @@ +import type { AutocompleteInteraction } from "discord.js"; import { Command, type Context, type Lavamusic } from "../../structures/index.js"; import { Language, LocaleFlags } from "../../types.js"; -import type { AutocompleteInteraction } from "discord.js"; export default class LanguageCommand extends Command { constructor(client: Lavamusic) { diff --git a/src/commands/music/Play.ts b/src/commands/music/Play.ts index 208aa8d80..cc4c0f6da 100644 --- a/src/commands/music/Play.ts +++ b/src/commands/music/Play.ts @@ -1,6 +1,6 @@ +import type { AutocompleteInteraction } from "discord.js"; import { LoadType } from "shoukaku"; import { Command, type Context, type Lavamusic } from "../../structures/index.js"; -import type { AutocompleteInteraction } from "discord.js"; export default class Play extends Command { constructor(client: Lavamusic) { diff --git a/src/commands/music/PlayNext.ts b/src/commands/music/PlayNext.ts index 9d4e0ad5e..8af77ccd7 100644 --- a/src/commands/music/PlayNext.ts +++ b/src/commands/music/PlayNext.ts @@ -1,6 +1,6 @@ +import type { AutocompleteInteraction } from "discord.js"; import { LoadType } from "shoukaku"; import { Command, type Context, type Lavamusic } from "../../structures/index.js"; -import type { AutocompleteInteraction } from "discord.js"; export default class PlayNext extends Command { constructor(client: Lavamusic) { diff --git a/src/commands/playlist/AddSong.ts b/src/commands/playlist/AddSong.ts index bbf9eb476..9c3cb1334 100644 --- a/src/commands/playlist/AddSong.ts +++ b/src/commands/playlist/AddSong.ts @@ -1,6 +1,6 @@ +import type { AutocompleteInteraction } from "discord.js"; import { LoadType } from "shoukaku"; import { Command, type Context, type Lavamusic } from "../../structures/index.js"; -import type { AutocompleteInteraction } from "discord.js"; export default class AddSong extends Command { constructor(client: Lavamusic) { diff --git a/src/commands/playlist/Delete.ts b/src/commands/playlist/Delete.ts index 02d94946a..663bd4518 100644 --- a/src/commands/playlist/Delete.ts +++ b/src/commands/playlist/Delete.ts @@ -1,5 +1,5 @@ -import { Command, type Context, type Lavamusic } from "../../structures/index.js"; import type { AutocompleteInteraction } from "discord.js"; +import { Command, type Context, type Lavamusic } from "../../structures/index.js"; export default class DeletePlaylist extends Command { constructor(client: Lavamusic) { diff --git a/src/commands/playlist/Load.ts b/src/commands/playlist/Load.ts index 4cc192e31..f23cdd3cc 100644 --- a/src/commands/playlist/Load.ts +++ b/src/commands/playlist/Load.ts @@ -1,5 +1,5 @@ -import { Command, type Context, type Lavamusic } from "../../structures/index.js"; import type { AutocompleteInteraction } from "discord.js"; +import { Command, type Context, type Lavamusic } from "../../structures/index.js"; export default class LoadPlaylist extends Command { constructor(client: Lavamusic) { diff --git a/src/commands/playlist/RemoveSong.ts b/src/commands/playlist/RemoveSong.ts index 313ad1b2f..04c2e7201 100644 --- a/src/commands/playlist/RemoveSong.ts +++ b/src/commands/playlist/RemoveSong.ts @@ -1,6 +1,6 @@ +import type { AutocompleteInteraction } from "discord.js"; import { LoadType } from "shoukaku"; import { Command, type Context, type Lavamusic } from "../../structures/index.js"; -import type { AutocompleteInteraction } from "discord.js"; export default class RemoveSong extends Command { constructor(client: Lavamusic) {