sessionmanager: Disable until the bot is up and running (#1752)

This commit is contained in:
Owain van Brakel
2019-10-11 12:07:49 +02:00
committed by Kyle
parent 85f266c181
commit 34b79e5625

View File

@@ -103,8 +103,8 @@ public class RuneLite
@Inject @Inject
public DiscordService discordService; public DiscordService discordService;
@Inject // @Inject
private ClientSessionManager clientSessionManager; // private ClientSessionManager clientSessionManager;
@Inject @Inject
private ClientUI clientUI; private ClientUI clientUI;
@@ -334,7 +334,7 @@ public class RuneLite
// Start client session // Start client session
RuneLiteSplashScreen.stage(.75, "Starting core interface"); RuneLiteSplashScreen.stage(.75, "Starting core interface");
clientSessionManager.start(); // clientSessionManager.start();
// Initialize UI // Initialize UI
RuneLiteSplashScreen.stage(.80, "Initialize UI"); RuneLiteSplashScreen.stage(.80, "Initialize UI");
@@ -386,7 +386,7 @@ public class RuneLite
public void shutdown() public void shutdown()
{ {
configManager.sendConfig(); configManager.sendConfig();
clientSessionManager.shutdown(); // clientSessionManager.shutdown();
discordService.close(); discordService.close();
} }