Merging changes from private branch

This commit is contained in:
Anuken
2025-04-04 11:47:35 -04:00
parent cf5c6d0905
commit b7dbe54d76
161 changed files with 2484 additions and 1137 deletions

View File

@@ -45,6 +45,7 @@ task dist(type: Jar, dependsOn: configurations.runtimeClasspath){
from files(sourceSets.main.output.resourcesDir)
from {configurations.runtimeClasspath.collect{ it.isDirectory() ? it : zipTree(it) }}
from files(project.assetsDir)
exclude("config/**")
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
//don't include steam shared libraries unless necessary

View File

@@ -53,6 +53,7 @@ public class DesktopLauncher extends ClientLauncher{
case "height": height = Integer.parseInt(arg[i + 1]); break;
case "gl3": gl30 = true; break;
case "gl2": gl30 = false; break;
case "coreGl": coreProfile = true; break;
case "antialias": samples = 16; break;
case "debug": Log.level = LogLevel.debug; break;
case "maximized": maximized = Boolean.parseBoolean(arg[i + 1]); break;