put back onto another thread
This commit is contained in:
parent
3e16f212da
commit
ab98d752c8
@ -153,20 +153,18 @@ public final class DiscordService {
|
||||
return;
|
||||
}
|
||||
// Initialize the bot
|
||||
new Thread(() -> {
|
||||
long before = System.currentTimeMillis();
|
||||
log.info("Logging in..."); // Log that we're logging in
|
||||
System.out.println("Step 1");
|
||||
JDA jda = JDABuilder.createDefault(token)
|
||||
jda = JDABuilder.createDefault(token)
|
||||
.enableIntents(
|
||||
GatewayIntent.GUILD_MEMBERS
|
||||
).setStatus(OnlineStatus.DO_NOT_DISTURB)
|
||||
.setActivity(Activity.watching("your licenses"))
|
||||
.addEventListeners(new EventHandler())
|
||||
.build();
|
||||
System.out.println("step 2");
|
||||
try {
|
||||
jda.awaitReady(); // Await JDA to be ready
|
||||
System.out.println("await complete");
|
||||
|
||||
// Log that we're logged in
|
||||
log.info("Logged into {} in {}ms",
|
||||
@ -182,7 +180,7 @@ public final class DiscordService {
|
||||
} catch (InterruptedException ex) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
System.out.println("finish");
|
||||
}, "Discord Bot Thread").start();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user