修复其mod.toml部分内容不能被正确替代问题, 更新了版本号 ForgePlatformHelper shouldDumpModels()方法可能会在初始化环境读取配置出错,若出错则返回false
38 lines
658 B
TOML
38 lines
658 B
TOML
modLoader = "javafml"
|
|
loaderVersion = "[47,)"
|
|
#issueTrackerURL = ""
|
|
license = "${mod_licence}"
|
|
logoFile = "icon.png"
|
|
|
|
[[mods]]
|
|
modId = "jsonem"
|
|
version = "${mod_version}"
|
|
displayName = "${mod_name}"
|
|
credits = "${mod_credits}"
|
|
authors = "${mod_authors}"
|
|
description = '''
|
|
${mod_description}
|
|
'''
|
|
|
|
|
|
[[dependencies.jsonem]]
|
|
modId = "forge"
|
|
mandatory = true
|
|
versionRange = "[47,)"
|
|
ordering = "NONE"
|
|
side = "BOTH"
|
|
|
|
[[dependencies.jsonem]]
|
|
modId = "minecraft"
|
|
mandatory = true
|
|
versionRange = "[1.20.1,)"
|
|
ordering = "NONE"
|
|
side = "BOTH"
|
|
|
|
[[dependencies.jsonem]]
|
|
modId = "architectury"
|
|
mandatory = true
|
|
versionRange = "[9.2.14,)"
|
|
ordering = "AFTER"
|
|
side = "BOTH"
|