Skip to content

Commit f829e0a

Browse files
committed
fixed command description lengths
1 parent 3bb5d24 commit f829e0a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
implementation 'dev.mlnr:BotListHandler-jda:2.0.0_8'
2626

2727
// audio
28-
implementation('com.github.KittyBot-Org:Lavalink-Client:09c6931') {
28+
implementation('com.github.KittyBot-Org:Lavalink-Client:d48f1a6') {
2929
exclude group: 'com.sedmelluq', module: 'lavaplayer'
3030
}
3131
implementation 'com.sedmelluq:lavaplayer:1.3.78'

src/main/java/de/kittybot/kittybot/commands/music/FilterCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ public void run(Options options, GuildInteraction ia){
267267
private static class ChannelMixCommand extends GuildSubCommand{
268268

269269
public ChannelMixCommand(){
270-
super("channel-mix", "Mixes both channels (left and right), with a configurable factor on how much each channel affects the other.");
270+
super("channel-mix", "Mixes both channels, with a configurable factor on how much each channel affects the other.");
271271
addOptions(
272272
new CommandOptionFloat("left-to-left", "How much audio from the left channel goes to the left channel"),
273273
new CommandOptionFloat("left-to-right", "How much audio from the left channel goes to the right channel"),
@@ -305,7 +305,7 @@ public void run(Options options, GuildInteraction ia){
305305
private static class LowPassCommand extends GuildSubCommand{
306306

307307
public LowPassCommand(){
308-
super("low-pass", "Higher frequencies get suppressed, while lower frequencies pass through this filter, thus the name low pass.");
308+
super("low-pass", "Higher frequencies get suppressed, while lower frequencies pass through this filter.");
309309
addOptions(
310310
new CommandOptionFloat("smoothing", "The smoothing level")
311311
);

src/main/java/de/kittybot/kittybot/main/KittyBot.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ public KittyBot() throws IOException, MissingConfigValuesException, LoginExcepti
3737
.addBotList(BotList.TOP_GG, Config.TOP_GG_TOKEN)
3838
.addBotList(BotList.DBOATS, Config.DISCORD_BOATS_TOKEN)
3939
.addBotList(BotList.DISCORDLIST_SPACE, Config.BOTLIST_SPACE_TOKEN)
40-
.addBotList(BotList.BOTS_FOR_DISCORD, Config.BOTS_FOR_DISCORD_TOKEN)
4140
.addBotList(BotList.DSERVICES, Config.DISCORD_SERVICES_TOKEN)
4241
.addBotList(BotList.DBL, Config.DISCORD_BOT_LIST_TOKEN)
4342
.addBotList(BotList.DEL, Config.DISCORD_EXTREME_LIST_TOKEN)

0 commit comments

Comments
 (0)