diff --git a/README.md b/README.md index 56d68e1..0f212e4 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,10 @@ Every feature present in the original mod should be here too. However, this mod 4. Track ties face the direction you are facing when placed 5. Some random bugfixes ## Versions -| Game Version | Mod Version | Supported | -| --- | --- | --- | -| 1.20.1 | v1.20.1-1.1.0 | YES | -| 1.21 | v1.21-1.1.0 | YES | +| Game Version | Mod Version | Supported | +| --- |--------------------| --- | +| 1.20.1 | v1.20.1-1.1.0-fix1 | YES | +| 1.21 | v1.21-1.1.0 | YES | ## Installation Currently, the mod can only be obtained from our [releases page](https://github.com/ImplicitSaber/Forkcart/releases). ## How To diff --git a/build.gradle b/build.gradle index 1886463..f3d0b62 100644 --- a/build.gradle +++ b/build.gradle @@ -50,7 +50,7 @@ processResources { } tasks.withType(JavaCompile).configureEach { - it.options.release = 21 + it.options.release = 17 } java { @@ -59,8 +59,8 @@ java { // If you remove this line, sources will not be generated. withSourcesJar() - sourceCompatibility = JavaVersion.VERSION_21 - targetCompatibility = JavaVersion.VERSION_21 + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 } jar { diff --git a/gradle.properties b/gradle.properties index 8e08ca7..11ed8db 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ yarn_mappings=1.20.1+build.10 loader_version=0.15.11 # Mod Properties -mod_version=1.20.1-1.1.0 +mod_version=1.20.1-1.1.0-fix1 maven_group=io.github.implicitsaber archives_base_name=forkcart diff --git a/src/client/resources/forkcart.client.mixins.json b/src/client/resources/forkcart.client.mixins.json index fbb556a..23faea6 100644 --- a/src/client/resources/forkcart.client.mixins.json +++ b/src/client/resources/forkcart.client.mixins.json @@ -1,7 +1,7 @@ { "required": true, "package": "io.github.implicitsaber.forkcart.mixin.client", - "compatibilityLevel": "JAVA_21", + "compatibilityLevel": "JAVA_17", "client": [ "CameraMixin", "ClientPlayNetworkHandlerMixin", diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index b91e74f..c79c0f3 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -33,7 +33,7 @@ "depends": { "fabricloader": ">=0.15.11", "minecraft": "=1.20.1", - "java": ">=21", + "java": ">=17", "fabric-api": "*" } } \ No newline at end of file diff --git a/src/main/resources/forkcart.mixins.json b/src/main/resources/forkcart.mixins.json index ed50cc6..aec2a6b 100644 --- a/src/main/resources/forkcart.mixins.json +++ b/src/main/resources/forkcart.mixins.json @@ -1,7 +1,7 @@ { "required": true, "package": "io.github.implicitsaber.forkcart.mixin", - "compatibilityLevel": "JAVA_21", + "compatibilityLevel": "JAVA_17", "mixins": [ "EntityMixin" ],