forked from Fascinated/Bat
edit user feed messages
This commit is contained in:
@ -13,7 +13,6 @@ import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEve
|
||||
import net.dv8tion.jda.api.hooks.ListenerAdapter;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.context.ApplicationContext;
|
||||
import org.springframework.context.annotation.DependsOn;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@ -42,12 +41,10 @@ public class CommandService extends ListenerAdapter {
|
||||
private final UserService userService;
|
||||
|
||||
@Autowired
|
||||
public CommandService(@NonNull GuildService guildService, @NonNull UserService userService, @NonNull ApplicationContext context) {
|
||||
public CommandService(@NonNull GuildService guildService, @NonNull UserService userService) {
|
||||
this.guildService = guildService;
|
||||
this.userService = userService;
|
||||
DiscordService.JDA.addEventListener(this);
|
||||
|
||||
context.getBeansOfType(BatCommand.class).values().forEach(this::registerCommand);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user