aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorinyourwalls <inyourwalls@tutanota.com>2024-02-19 20:28:38 -0500
committerinyourwalls <inyourwalls@tutanota.com>2024-02-19 20:28:38 -0500
commit6f0b00923e8198260bbdb987a311a5a2980409bc (patch)
treeadeb116194e5432d4c86f302f19f07f711392c82 /build.gradle.kts
parentb93a9f1406a38e32c03b75206411aae72defa931 (diff)
don't render background on 1.20.2 onwards1.20.2
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index bc46aa2..b2c6c81 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -3,7 +3,8 @@ plugins {
id("fabric-loom") version "1.5-SNAPSHOT"
}
-version = "1.0.0"
+val minecraftVersion = "1.20.2"
+version = "1.0.0+$minecraftVersion"
group = "net.inyourwalls"
repositories {
@@ -11,8 +12,7 @@ repositories {
}
dependencies {
- val minecraftVersion = "1.20.1"
- val yarnBuild = "10"
+ val yarnBuild = "4"
val fabricLoaderVersion = "0.14.22"
minecraft("com.mojang:minecraft:$minecraftVersion")