mods.toml

unlisted ⁨1⁩ ⁨file⁩ 2021-01-19 02:13:16 UTC

pastefile1

Raw
modLoader="javafml" #mandatory
loaderVersion="[36,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
license="All rights reserved"
[[mods]] #mandatory
modId="waymorelights" #mandatory
version="0.0.1" #mandatory
displayName="Way More Lights Mod" #mandatory
#updateJSONURL="https://change.me.example.invalid/updates.json" #optional
credits="Coming Soon" #optional
# A text field displayed in the mod UI
authors="John" #optional
# The description text for the mod (multi line!) (#mandatory)
description='''
Just a Fun Little Mod I Put Together
'''
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
[[dependencies.waymorelights]] #optional
    # the modid of the dependency
    modId="forge" #mandatory
    # Does this dependency have to exist - if not, ordering below must be specified
    mandatory=true #mandatory
    # The version range of the dependency
    versionRange="[36,)" #mandatory
    # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
    ordering="NONE"
    # Side this dependency is applied on - BOTH, CLIENT or SERVER
    side="BOTH"
# Here's another dependency
[[dependencies.waymorelights]]
    modId=""
    mandatory=true
# This version range declares a minimum of the current minecraft version up to but not including the next major version
    versionRange="[1.16.5]"
    ordering="NONE"
    side="BOTH"