Skip to content

Commit

Permalink
Update lavalink settings and format
Browse files Browse the repository at this point in the history
  • Loading branch information
hwangsihu committed Aug 6, 2024
1 parent 5a042fe commit 60e154c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Lavalink/example.application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/commands/config/Language.ts
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/music/Play.ts
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/music/PlayNext.ts
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/playlist/AddSong.ts
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/playlist/Delete.ts
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/playlist/Load.ts
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/playlist/RemoveSong.ts
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down

0 comments on commit 60e154c

Please sign in to comment.