Skip to content

Commit

Permalink
fix: Fix incorrect minimum Minecraft version on Fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed Aug 13, 2024
1 parent 2c81de0 commit aaab73c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"depends": {
"fabricloader": ">=${fabric_loader_version}",
"fabric-api": "*",
"minecraft": ">=${minecraft_version}",
"minecraft": ">=${minimum_minecraft_version}",
"java": ">=${java_version}"
},
"suggests": {
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ modrinth_project_id = MBAkmtvl

# Minecraft
minecraft_version = 1.21.1
minimum_minecraft_version = 1.21
minecraft_versions = 1.21,1.21.1
minecraft_version_range = [1.21,)
pack_format_number = 18
Expand Down

0 comments on commit aaab73c

Please sign in to comment.