31 lines
1.0 KiB
TOML
31 lines
1.0 KiB
TOML
modLoader = "javafml"
|
|
loaderVersion = "${loader_version_range}"
|
|
license = "${mod_license}"
|
|
#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/"
|
|
|
|
[[mods]]
|
|
modId = "${mod_id}"
|
|
version = "${mod_version}"
|
|
displayName = "${mod_name}"
|
|
#updateJSONURL="https://change.me.example.invalid/updates.json" # https://docs.minecraftforge.net/en/latest/misc/updatechecker/
|
|
#displayURL="https://change.me.to.your.mods.homepage.example.invalid/"
|
|
#logoFile="xp_tools.png"
|
|
#credits=""
|
|
authors = "${mod_authors}"
|
|
displayTest="IGNORE_SERVER_VERSION" # MATCH_VERSION, IGNORE_SERVER_VERSION (server only), IGNORE_ALL_VERSION (client only), NONE (IExtensionPoint.DisplayTest)
|
|
description = '''${mod_description}'''
|
|
|
|
[[dependencies."${mod_id}"]]
|
|
modId = "forge"
|
|
mandatory = true
|
|
versionRange = "${forge_version_range}"
|
|
ordering = "NONE" # BEFORE, AFTER, NONE
|
|
side = "BOTH" # BOTH, CLIENT, SERVER
|
|
|
|
[[dependencies."${mod_id}"]]
|
|
modId = "minecraft"
|
|
mandatory = true
|
|
versionRange = "${minecraft_version_range}"
|
|
ordering = "NONE"
|
|
side = "BOTH"
|