From 977dc407676147b29774db0510bfe10ba388842e Mon Sep 17 00:00:00 2001 From: Spottedleaf Date: Wed, 7 Jun 2023 22:03:07 -0700 Subject: [PATCH] Clean rebuild Add to gradle build so that this is automatically done throughout the update --- build.gradle.kts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index d5566aac1e..78fd0ba92b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -136,6 +136,11 @@ tasks.collectAtsFromPatches { extraPatchDir.set(layout.projectDirectory.dir("patches/unapplied/server")) } +// Uncomment while updating for a new Minecraft version +tasks.withType { + filterPatches.set(false) +} + tasks.register("printMinecraftVersion") { doLast { println(providers.gradleProperty("mcVersion").get().trim())