aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaint_Ninja <PaintNinja@users.noreply.github.com>2024-09-22 08:08:35 +0100
committerGitHub <noreply@github.com>2024-09-22 08:08:35 +0100
commit7f3228995f811f00450c3426749c3ffdd5eb29f8 (patch)
treeff2a17ebdf1931f7141c61672a88a7fd4f727f44
parentdfe500eba75ad401e22cc59f4a51f34a2d5be288 (diff)
downloadspark-7f3228995f811f00450c3426749c3ffdd5eb29f8.tar.gz
spark-7f3228995f811f00450c3426749c3ffdd5eb29f8.tar.bz2
spark-7f3228995f811f00450c3426749c3ffdd5eb29f8.zip
Fix Forge platform crash on launch (#455)
-rw-r--r--spark-forge/build.gradle8
1 files changed, 1 insertions, 7 deletions
diff --git a/spark-forge/build.gradle b/spark-forge/build.gradle
index 1d627b1..948090f 100644
--- a/spark-forge/build.gradle
+++ b/spark-forge/build.gradle
@@ -11,6 +11,7 @@ tasks.withType(JavaCompile) {
minecraft {
mappings channel: 'official', version: '1.21.1'
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
+ reobf = false
}
configurations {
@@ -62,10 +63,3 @@ artifacts {
archives shadowJar
shadow shadowJar
}
-
-reobf {
- shadowJar {
- dependsOn createMcpToSrg
- mappings = createMcpToSrg.outputs.files.singleFile
- }
-}