Update clientloader (and tell only developers to turn on assertions)

Make both `--localinjected` and `--rs=CUSTOM` work

Make `--rs=VANILLA` work again
This commit is contained in:
Lucas
2019-06-11 20:37:30 +02:00
parent 46a19298dd
commit 549898f8c5
2 changed files with 54 additions and 70 deletions

View File

@@ -243,7 +243,7 @@ public class RuneLite
System.exit(0);
}
final boolean developerMode = true;
final boolean developerMode = options.has("developer-mode");
if (developerMode)
{
@@ -290,7 +290,7 @@ public class RuneLite
injector = Guice.createInjector(new RuneLiteModule(
options.valueOf(updateMode),
developerMode));
true));
injector.getInstance(RuneLite.class).start();
splashScreen.setProgress(1, 5);