Skip to content

Commit

Permalink
Change from '~' to '>=' for Minecraft version range
Browse files Browse the repository at this point in the history
  • Loading branch information
nahkd123 committed Dec 7, 2023
1 parent 4850b64 commit a73f1e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabric/src/main/java/stonks/fabric/StonksFabric.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
license = "MIT")
@Dependencies({
@Dependency(value = "fabricloader", version = ">=${loader_version}"),
@Dependency(value = "minecraft", version = "~${minecraft_version}"),
@Dependency(value = "minecraft", version = ">=${minecraft_version}"),
@Dependency(value = "java", version = ">=17"),
@Dependency(value = "fabric-api", version = ">=${fabric_version}")
})
Expand Down

0 comments on commit a73f1e9

Please sign in to comment.