Skip to content

Commit

Permalink
Stops ManasCore from checking for a specific mixin extra version as i…
Browse files Browse the repository at this point in the history
…t still causing incompatibility with mod of the same version
  • Loading branch information
minheragon12345 committed Nov 16, 2024
1 parent ff93f21 commit 9990bc6
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ loaderVersion = "${forgeLoaderVersion}"
license = "GPL-3"
issueTrackerURL = "https://github.com/ManasMods/ManasCore/issues" #optional
[[mods]] #mandatory
modId = "${modId}" #mandatory
modId = "manascore" #mandatory
version = "${modVersion}"
displayName = "ManasCore" #mandatory
updateJSONURL="https://api.modrinth.com/updates/wRRSWpd1/forge_updates.json" #optional
Expand All @@ -15,24 +15,18 @@ description = '''
Utility and Core Library for Manas Mods
'''
#@formatter:off
[[dependencies.${modId}]] #optional
[[dependencies.manascore]] #optional
modId="forge" #mandatory
mandatory=true #mandatory
versionRange="${forgeLoaderVersion}" #mandatory
ordering="NONE"
side="BOTH"
# Here's another dependency
[[dependencies.${modId}]]
[[dependencies.manascore]]
modId="minecraft"
mandatory=true
# This version range declares a minimum of the current minecraft version up to but not including the next major version
versionRange="${minecraftVersionCheck}"
ordering="NONE"
side="BOTH"
[[dependencies.${modId}]]
modId="mixinextras"
mandatory=true
versionRange="[${mixinExtrasVersion},)"
ordering="NONE"
side="BOTH"
##@formatter:on

0 comments on commit 9990bc6

Please sign in to comment.