Skip to content

Commit

Permalink
mc1.20.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Plastoid501 committed Jul 15, 2024
1 parent 85c2826 commit 7fce258
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 = 17
it.options.release = 21
}

java {
Expand All @@ -47,8 +47,8 @@ java {
// If you remove this line, sources will not be generated.
withSourcesJar()

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

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.4
yarn_mappings=1.20.4+build.3
minecraft_version=1.20.6
yarn_mappings=1.20.6+build.3
loader_version=0.15.11

# Mod Properties
mod_version=1.0.0
maven_group=net.plastoid501.rpll
archives_base_name=restrict-placement-of-lava-in-lava-mc1.20.4
archives_base_name=restrict-placement-of-lava-in-lava-mc1.20.6

# Dependencies
fabric_version=0.97.1+1.20.4
fabric_version=0.100.4+1.20.6
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 @@
"restrict-placement-of-lava-in-lava.mixins.json"
],
"depends": {
"minecraft": ">=1.20 <=1.20.4"
"minecraft": ">=1.20.5 <=1.20.6"
},
"suggests": {
"another-mod": "*"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"required": true,
"package": "net.plastoid501.rpll.mixin",
"compatibilityLevel": "JAVA_17",
"compatibilityLevel": "JAVA_21",
"mixins": [
],
"injectors": {
Expand Down

0 comments on commit 7fce258

Please sign in to comment.