Skip to content

Commit

Permalink
fixed issue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
breelock committed Aug 31, 2024
1 parent 65c4253 commit e423f63
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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 = 8
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_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

jar {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ org.gradle.parallel=true

# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version=1.20.3
yarn_mappings=1.20.3+build.1
minecraft_version=1.20.5
yarn_mappings=1.20.5+build.1
loader_version=0.16.3

# Mod Properties
Expand All @@ -14,4 +14,4 @@ maven_group=com.breelock.autoclicky
archives_base_name=autoclicky

# Fabric API
fabric_version=0.91.1+1.20.3
fabric_version=0.97.8+1.20.5
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"depends": {
"fabricloader": ">=0.15.11",
"minecraft": ">=1.20.3 <=1.20.4",
"minecraft": ">=1.20.5 <=1.21.1",
"java": ">=8",
"fabric": "*"
},
Expand Down

0 comments on commit e423f63

Please sign in to comment.