Skip to content

Commit

Permalink
soulfired aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
lilypuree committed Jan 25, 2024
1 parent bb95a94 commit c7e2847
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 30 deletions.
5 changes: 4 additions & 1 deletion Fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@
},
"custom": {
"mc-publish": {
"loaders": ["fabric"]
"loaders": ["fabric"],
"dependencies": [
"[email protected](optional){modrinth:d6MhxwRo}{curseforge:662413}"
]
}
}
}
61 changes: 32 additions & 29 deletions Forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,44 +1,47 @@
modLoader="javafml"
loaderVersion="${forge_loader_version_range}"
license="${mod_license}"
modLoader = "javafml"
loaderVersion = "${forge_loader_version_range}"
license = "${mod_license}"

# A URL to refer people to when problems occur with this mod
#issueTrackerURL="http://my.issue.tracker/" #optional
# A list of mods - how many allowed here is determined by the individual mod loader
[[mods]] #mandatory
modId="${mod_id}" #mandatory
version="${version}" #mandatory
displayName="${mod_name}" #mandatory
modId = "${mod_id}" #mandatory
version = "${version}" #mandatory
displayName = "${mod_name}" #mandatory
# A URL to query for updates for this mod. See the JSON update specification <here>
#updateJSONURL="http://myurl.me/" #optional
# A URL for the "homepage" for this mod, displayed in the mod UI
#displayURL="http://example.com/" #optional
# A file name (in the root of the mod JAR) containing a logo for display
logoFile="logo.png" #optional
credits="Thanks for stohun for the amazing models" #optional
authors="${mod_author}" #optional
description='''${mod_description}'''
logoFile = "logo.png" #optional
credits = "Thanks for stohun for the amazing models" #optional
authors = "${mod_author}" #optional
description = '''${mod_description}'''

[[dependencies.${mod_id}]] #optional
modId="forge" #mandatory
mandatory=true #mandatory
versionRange="${forge_version_range}" #mandatory
ordering="NONE"
side="BOTH"
[[dependencies.${ mod_id }]] #optional
modId = "forge" #mandatory
mandatory = true #mandatory
versionRange = "${forge_version_range}" #mandatory
ordering = "NONE"
side = "BOTH"

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

[[dependencies.${mod_id}]]
modId="soulfired"
mandatory=false
versionRange="[3.2.1.0,)"
ordering="NONE"
side="BOTH"
[[dependencies.${ mod_id }]]
modId = "soulfired"
mandatory = false
versionRange = "[3.2.1.0,)"
ordering = "NONE"
side = "BOTH"

[mc-publish]
loaders = ['forge', 'neoforge']
loaders = ['forge', 'neoforge']
dependencies = [
"[email protected](optional){modrinth:d6MhxwRo}{curseforge:662413}"
]

0 comments on commit c7e2847

Please sign in to comment.