Skip to content

Commit

Permalink
mc1.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Plastoid501 committed Jul 17, 2024
1 parent 7dcb402 commit d802fc9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ processResources {
}

tasks.withType(JavaCompile).configureEach {
it.options.release = 21
it.options.release = 17
}

java {
Expand All @@ -47,8 +47,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 {
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ org.gradle.parallel=true

# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version=1.20.6
yarn_mappings=1.20.6+build.3
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.3
loader_version=0.15.11

# Mod Properties
mod_version=1.0.0
maven_group=net.plastoid501.movement
archives_base_name=movement-in-gui-mc1.20.6
archives_base_name=movement-in-gui-mc1.20.4

# Dependencies
fabric_version=0.100.4+1.20.6
fabric_version=0.97.1+1.20.4
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"movement-in-gui.mixins.json"
],
"depends": {
"minecraft": ">=1.20.5 <=1.20.6"
"minecraft": ">=1.20 <=1.20.4"
},
"suggests": {
"another-mod": "*"
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/movement-in-gui.mixins.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"required": true,
"package": "net.plastoid501.movement.mixin",
"compatibilityLevel": "JAVA_21",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"injectors": {
Expand Down

0 comments on commit d802fc9

Please sign in to comment.