Skip to content

Commit

Permalink
chore: Mark Biospherical Expansion as incompatible
Browse files Browse the repository at this point in the history
Also updated `neoforge.mods.toml` to use the new dependencies format.
  • Loading branch information
Steveplays28 committed Aug 21, 2024
1 parent 7303eaf commit 4c0bf2c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,8 @@
},
"suggests": {
"c2me": "*"
},
"breaks": {
"biox": "*"
}
}
11 changes: 9 additions & 2 deletions neoforge/src/main/resources/META-INF/neoforge.mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,21 @@ modrinth = "${modrinth_project_id}"

[[dependencies.${mod_id}]]
modId = "minecraft"
mandatory = true
type = "required"
versionRange = "${supported_minecraft_version}"
ordering = "NONE"
side = "BOTH"

[[dependencies.${mod_id}]]
modId = "neoforge"
mandatory = true
type = "required"
versionRange = ">=${neoforge_version}"
ordering = "NONE"
side = "BOTH"

[[dependencies.${mod_id}]]
modId = "biox"
type = "incompatible"
reason = "Crashes the game during world generation."
ordering = "NONE"
side = "BOTH"

0 comments on commit 4c0bf2c

Please sign in to comment.