Merge pull request #2745 from Lucwousin/deob-annot

Deob/asm: Improve cfg deob, reproducible jars, smart annotations
This commit is contained in:
Tyler Bochard
2020-08-01 19:23:04 -04:00
committed by GitHub
396 changed files with 3392 additions and 4343 deletions

View File

@@ -155,7 +155,7 @@ tasks {
register<JavaExec>("RuneLite.main()") {
group = "openosrs"
classpath = project.sourceSets.main.get().runtimeClasspath
classpath = sourceSets["main"].runtimeClasspath
enableAssertions = true
main = "net.runelite.client.RuneLite"
}

View File

@@ -930,6 +930,11 @@ public class ExternalPluginManager
log.info("Not updating external plugins since there is more than 1 client open");
return;
}
else if (developmentMode)
{
log.info("Not updating because we're running in developer mode");
return;
}
RuneLiteSplashScreen.stage(.59, "Updating external plugins");