From c7e2847ecb99a09357f364e52e18f3121d5fc078 Mon Sep 17 00:00:00 2001 From: lilypuree <000abczyx@snu.ac.kr> Date: Thu, 25 Jan 2024 17:42:00 +0900 Subject: [PATCH] soulfired aliases --- Fabric/src/main/resources/fabric.mod.json | 5 +- Forge/src/main/resources/META-INF/mods.toml | 61 +++++++++++---------- 2 files changed, 36 insertions(+), 30 deletions(-) diff --git a/Fabric/src/main/resources/fabric.mod.json b/Fabric/src/main/resources/fabric.mod.json index 452b5b7..953e3ee 100644 --- a/Fabric/src/main/resources/fabric.mod.json +++ b/Fabric/src/main/resources/fabric.mod.json @@ -36,7 +36,10 @@ }, "custom": { "mc-publish": { - "loaders": ["fabric"] + "loaders": ["fabric"], + "dependencies": [ + "soulfired@3.2.1.0(optional){modrinth:d6MhxwRo}{curseforge:662413}" + ] } } } diff --git a/Forge/src/main/resources/META-INF/mods.toml b/Forge/src/main/resources/META-INF/mods.toml index a0f5fd5..5fc3726 100644 --- a/Forge/src/main/resources/META-INF/mods.toml +++ b/Forge/src/main/resources/META-INF/mods.toml @@ -1,44 +1,47 @@ -modLoader="javafml" -loaderVersion="${forge_loader_version_range}" -license="${mod_license}" +modLoader = "javafml" +loaderVersion = "${forge_loader_version_range}" +license = "${mod_license}" # A URL to refer people to when problems occur with this mod #issueTrackerURL="http://my.issue.tracker/" #optional # A list of mods - how many allowed here is determined by the individual mod loader [[mods]] #mandatory -modId="${mod_id}" #mandatory -version="${version}" #mandatory -displayName="${mod_name}" #mandatory +modId = "${mod_id}" #mandatory +version = "${version}" #mandatory +displayName = "${mod_name}" #mandatory # A URL to query for updates for this mod. See the JSON update specification #updateJSONURL="http://myurl.me/" #optional # A URL for the "homepage" for this mod, displayed in the mod UI #displayURL="http://example.com/" #optional # A file name (in the root of the mod JAR) containing a logo for display -logoFile="logo.png" #optional -credits="Thanks for stohun for the amazing models" #optional -authors="${mod_author}" #optional -description='''${mod_description}''' +logoFile = "logo.png" #optional +credits = "Thanks for stohun for the amazing models" #optional +authors = "${mod_author}" #optional +description = '''${mod_description}''' -[[dependencies.${mod_id}]] #optional -modId="forge" #mandatory -mandatory=true #mandatory -versionRange="${forge_version_range}" #mandatory -ordering="NONE" -side="BOTH" +[[dependencies.${ mod_id }]] #optional +modId = "forge" #mandatory +mandatory = true #mandatory +versionRange = "${forge_version_range}" #mandatory +ordering = "NONE" +side = "BOTH" -[[dependencies.${mod_id}]] -modId="minecraft" -mandatory=true -versionRange="${minecraft_version_range}" -ordering="NONE" -side="BOTH" +[[dependencies.${ mod_id }]] +modId = "minecraft" +mandatory = true +versionRange = "${minecraft_version_range}" +ordering = "NONE" +side = "BOTH" -[[dependencies.${mod_id}]] -modId="soulfired" -mandatory=false -versionRange="[3.2.1.0,)" -ordering="NONE" -side="BOTH" +[[dependencies.${ mod_id }]] +modId = "soulfired" +mandatory = false +versionRange = "[3.2.1.0,)" +ordering = "NONE" +side = "BOTH" [mc-publish] -loaders = ['forge', 'neoforge'] \ No newline at end of file +loaders = ['forge', 'neoforge'] +dependencies = [ + "soulfired@3.2.1.0(optional){modrinth:d6MhxwRo}{curseforge:662413}" +] \ No newline at end of file