Skip to content

Commit

Permalink
feat: set pv dependency to >=2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Apehum committed Nov 18, 2023
1 parent 8a1cb16 commit cf13606
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object FabricAddonEntryPoint : AddonEntryPoint() {
})
})
fabricJson.add("depends", JsonObject().also { depends ->
depends.addProperty("plasmovoice", "*")
depends.addProperty("plasmovoice", ">=2.1.0-0")
addon.dependencies.filter { !it.isOptional }.forEach { dependency ->
depends.addProperty(dependency.id, "*")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ object ForgeAddonEntryPoint : AddonEntryPoint() {
addonDependencies.add(HashMap<String, Any>().also { dependency ->
dependency["modId"] = "plasmovoice"
dependency["mandatory"] = true
dependency["versionRange"] = "[2.0.0,)"
dependency["versionRange"] = "[2.1.0,)"
dependency["ordering"] = "AFTER"
})

Expand Down

0 comments on commit cf13606

Please sign in to comment.