mirror of
https://github.com/TeamMidnightDust/MidnightLib.git
synced 2025-12-16 09:15:10 +01:00
35 lines
636 B
TOML
35 lines
636 B
TOML
modLoader = "javafml"
|
|
loaderVersion = "[2,)"
|
|
#issueTrackerURL = ""
|
|
license = "MIT License"
|
|
|
|
[[mods]]
|
|
modId = "modid"
|
|
version = "${version}"
|
|
displayName = "MidnightLib Test Mod"
|
|
authors = "TeamMidnightDust, Motschen"
|
|
description = '''
|
|
Example Mod for Team MidnightDust's mods.
|
|
'''
|
|
|
|
[[dependencies.modid]]
|
|
modId = "neoforge"
|
|
mandatory = true
|
|
versionRange = "[20.5,)"
|
|
ordering = "NONE"
|
|
side = "BOTH"
|
|
|
|
[[dependencies.modid]]
|
|
modId = "minecraft"
|
|
mandatory = true
|
|
versionRange = "[1.20.5,)"
|
|
ordering = "NONE"
|
|
side = "BOTH"
|
|
|
|
[[dependencies.modid]]
|
|
modId = "midnightlib"
|
|
mandatory = true
|
|
versionRange = "[1.0,)"
|
|
ordering = "NONE"
|
|
side = "BOTH"
|