update to remove META-INF during remapping
All checks were successful
Publish to snapshot maven / build (push) Successful in 35s

This commit is contained in:
moehreag 2024-05-16 13:55:51 +02:00
parent 1634c8a5f9
commit 807eca7855
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#Sun May 12 17:35:40 BST 2024 #Sun May 12 17:35:40 BST 2024
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

View file

@ -20,7 +20,7 @@ fun Project.minecraft(version: String) {
NonsenseGradlePlugin.remappedGameJarPath = remappedJar NonsenseGradlePlugin.remappedGameJarPath = remappedJar
println("Time to setup Minecraft!") println("Time to setup Minecraft!")
if (remappedJar.notExists()) { if (remappedJar.notExists()) {
MojMapPatcher.run(version, clientJar, remappedJar) MojMapPatcher.run(version, clientJar, remappedJar, true)
} }
VersionChecker.getDependencies(version){ VersionChecker.getDependencies(version){
dependencies.add("implementation", it) dependencies.add("implementation", it)