Skip to content

Commit

Permalink
Now it compiles again
Browse files Browse the repository at this point in the history
  • Loading branch information
duncte123 committed Nov 26, 2023
1 parent 60b46dd commit 6de09e8
Show file tree
Hide file tree
Showing 19 changed files with 26 additions and 972 deletions.
9 changes: 4 additions & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

root = true

[*]
Expand All @@ -12,10 +11,10 @@ indent_size = 4
end_of_line = lf

[*.{kt,kts}]
# ktlint_code_style = ktlint_official
ktlint_standard = disabled # Disable all rules from the `standard` rule set provided by KtLint
ktlint_experimental = disabled # Enable all `experimental` rules from all rule sets provided by KtLint or other rule providers
ktlint_custom-rule-set = disabled # Enable all rules in the `custom-rule-set` rule set (not provided by KtLint)
ktlint_code_style = ktlint_official
ktlint_standard = enabled
ktlint_experimental = disabled
ktlint_custom-rule-set = disabled
klint_standard_no-wildcard-imports = disabled
klint_standard_function-signature = disabled
klint_standard_trailing-comma-on-call-site = disabled
Expand Down
2 changes: 0 additions & 2 deletions bot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ dependencies {
implementation(libs.jda) {
exclude(module = "opus-java")
}
implementation(libs.sourceManagers)
implementation(libs.lavaplayer)
implementation(libs.lavalink.client) {
exclude(module = "lavaplayer")
}
Expand Down
1 change: 0 additions & 1 deletion bot/src/main/java/ml/duncte123/skybot/CommandManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,6 @@ public CommandManager(Variables variables) {
this.addCommand(new SkipCommand());
this.addCommand(new SlowModeCommand());
this.addCommand(new SoftbanCommand());
this.addCommand(new SPLookupCommand());
this.addCommand(new StatsCommand());
this.addCommand(new StopCommand());
this.addCommand(new SuggestCommand());
Expand Down
2 changes: 1 addition & 1 deletion bot/src/main/java/ml/duncte123/skybot/Variables.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public final class Variables {
this.apis = new DuncteApis("Bot " + this.config.discord.token, this.mapper);
this.commandManager = new CommandManager(this);
this.blargBot = new BlargBot(this.config.apis.blargbot, this.mapper);
this.audioUtils = new AudioUtils(this.config.apis, this);
this.audioUtils = new AudioUtils(this);
this.alexflipnote = new Alexflipnote(this.mapper, this.config.apis.alexflipnote);
this.weebApi = new WeebApiBuilder(TokenType.WOLKETOKENS)
.setBotInfo("DuncteBot(SkyBot)", Settings.VERSION, "Production")
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 6de09e8

Please sign in to comment.