aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorAppability <appable@icloud.com>2022-10-11 23:59:37 -0700
committerAppability <appable@icloud.com>2022-10-11 23:59:37 -0700
commit2c0e73deb53f54d78bd5594786313ac82151be1a (patch)
tree97fc2f389cc99d8f9e078a1cd7b0c6a5859a3f34 /build.gradle.kts
parent363b2426f8d9e45e52c472750c798dcaceb05a88 (diff)
downloadAmbientAddons-2c0e73deb53f54d78bd5594786313ac82151be1a.tar.gz
AmbientAddons-2c0e73deb53f54d78bd5594786313ac82151be1a.tar.bz2
AmbientAddons-2c0e73deb53f54d78bd5594786313ac82151be1a.zip
added chest qol features (complete, i think)
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts12
1 files changed, 6 insertions, 6 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index e7e5284..beead4e 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -12,8 +12,8 @@ plugins {
id("com.github.johnrengelman.shadow") version "7.1.2"
}
-group = "ExampleMod"
-version = "1.0"
+group = "AmbientAddons"
+version = "0.1"
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(8))
@@ -31,15 +31,15 @@ loom {
property("mixin.debug", "true")
property("asmhelper.verbose", "true")
arg("--tweakClass", "org.spongepowered.asm.launch.MixinTweaker")
- arg("--mixin", "mixins.examplemods.json")
+ arg("--mixin", "mixins.ambientaddons.json")
}
}
forge {
pack200Provider.set(dev.architectury.pack200.java.Pack200Adapter())
- mixinConfig("mixins.examplemod.json")
+ mixinConfig("mixins.ambientaddons.json")
}
mixin {
- defaultRefmapName.set("mixins.examplemod.refmap.json")
+ defaultRefmapName.set("mixins.ambientaddons.refmap.json")
}
}
@@ -96,7 +96,7 @@ tasks.withType(Jar::class) {
this["FMLCorePluginContainsFMLMod"] = "true"
this["ForceLoadAsMod"] = "true"
- this["MixinConfigs"] = "mixins.examplemod.json"
+ this["MixinConfigs"] = "mixins.ambientaddons.json"
this["TweakClass"] = "gg.essential.loader.stage0.EssentialSetupTweaker"
this["TweakOrder"] = "0"