mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-22 17:18:37 +01:00
Ensure JDA is started before allowing calls to the JDA object
This commit is contained in:
parent
51c49b0de6
commit
668c9634ca
@ -149,9 +149,9 @@ public class JDADiscordService implements DiscordService, IEssentialsModule {
|
||||
public void startup() throws LoginException, InterruptedException {
|
||||
shutdown();
|
||||
|
||||
invalidStartup = true;
|
||||
logger.log(Level.INFO, tl("discordLoggingIn"));
|
||||
if (plugin.getSettings().getBotToken().replace("INSERT-TOKEN-HERE", "").trim().isEmpty()) {
|
||||
invalidStartup = true;
|
||||
throw new IllegalArgumentException(tl("discordErrorNoToken"));
|
||||
}
|
||||
|
||||
@ -162,6 +162,7 @@ public class JDADiscordService implements DiscordService, IEssentialsModule {
|
||||
.setContextEnabled(false)
|
||||
.build()
|
||||
.awaitReady();
|
||||
invalidStartup = false;
|
||||
updatePresence();
|
||||
logger.log(Level.INFO, tl("discordLoggingInDone", jda.getSelfUser().getAsTag()));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user