why angry??????

This commit is contained in:
Lee
2024-07-01 23:02:28 +01:00
parent 3146ed7d6d
commit 37c69597be
3 changed files with 7 additions and 1 deletions

View File

@ -18,6 +18,7 @@ import net.dv8tion.jda.api.hooks.ListenerAdapter;
import net.dv8tion.jda.api.interactions.commands.Command;
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;
@ -47,7 +48,8 @@ public class CommandService extends ListenerAdapter {
private final UserService userService;
@Autowired
public CommandService(@NonNull GuildService guildService, @NonNull UserService userService) {
public CommandService(@NonNull ApplicationContext context, @NonNull GuildService guildService, @NonNull UserService userService) {
context.getBean(Config.class);
this.guildService = guildService;
this.userService = userService;
DiscordService.JDA.addEventListener(this);