Skip to content

Commit

Permalink
Require specific Minecraft version.
Browse files Browse the repository at this point in the history
Since MC version numbers don't really match semver for mods (next minor could be breaking the mod).
  • Loading branch information
fnuecke committed Sep 23, 2023
1 parent a6af95f commit c502c86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 @@
"fabric-api": ">=${fabricApiVersion}",
"forgeconfigapiport": ">=${forgeConfigPortVersion}",
"architectury": ">=${architecturyVersion}",
"minecraft": ">=${minecraftVersion}",
"minecraft": "${minecraftVersion}",
"markdown_manual": ">=${manualVersion}",
"java": ">=17"
},
Expand Down
2 changes: 1 addition & 1 deletion forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ side = "BOTH"
[[dependencies.tis3d]]
modId = "minecraft"
mandatory = true
versionRange = "[${minecraftVersion},)"
versionRange = "${minecraftVersion}"
ordering = "NONE"
side = "BOTH"

Expand Down

0 comments on commit c502c86

Please sign in to comment.