27 lines
1.2 KiB
TOML
27 lines
1.2 KiB
TOML
|
|
modLoader="javafml" #//mandatory
|
|
loaderVersion="[36,41)" # // mandatory. This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
|
|
license="GNU GPLv3"
|
|
issueTrackerURL="${issues}"
|
|
|
|
|
|
[[mods]] #//mandatory
|
|
modId="lod" #//mandatory
|
|
version= "${version}" #//mandatory, gets the version number from jar populated by the build.gradle script
|
|
displayName="${mod_name}" #//mandatory
|
|
authors="${authors}"
|
|
#//updateJSONURL="https://change.me.example.invalid/updates.json" # A URL to query for updates for this mod. See the JSON update specification https://mcforge.readthedocs.io/en/latest/gettingstarted/autoupdate/
|
|
displayURL="${homepage}"
|
|
description= "${description}" #//mandatory. The description text for the mod
|
|
logoFile="logo.png"
|
|
catalogueImageIcon="icon.png"
|
|
credits="Massive thanks to: Leonardo, Cola, Ran, and CoolGi. For their hard work to bring Distant Horizons to where it is today. - James"
|
|
#// if not set defaults to "false"
|
|
clientSideOnly="true"
|
|
#// if not set defaults to "BOTH"
|
|
#// TODO change to "BOTH" when we add server support
|
|
side="CLIENT"
|
|
#// Allow any version to be present (or not) on the server
|
|
acceptableRemoteVersions="*"
|
|
|