diff options
author | nea <nea@nea.moe> | 2023-05-26 00:36:23 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-05-26 00:36:23 +0200 |
commit | 484a4b1a61493eb1401ac9c8ac063db3f847cf98 (patch) | |
tree | edeba4641148b681c54aebd8a1a1fae12cdc7910 /src/main/resources | |
parent | 402e07e9d8b72f4105e3183bbd1d6db62722fa9b (diff) | |
download | Firmament-484a4b1a61493eb1401ac9c8ac063db3f847cf98.tar.gz Firmament-484a4b1a61493eb1401ac9c8ac063db3f847cf98.tar.bz2 Firmament-484a4b1a61493eb1401ac9c8ac063db3f847cf98.zip |
Add config gui to mod menu
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/fabric.mod.json | 46 |
1 files changed, 28 insertions, 18 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index c08adb9..063bda7 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -26,23 +26,33 @@ "value": "moe.nea.firmament.Firmament" } ], - "client": [ - { - "adapter": "kotlin", - "value": "moe.nea.firmament.Firmament" - } - ], - "rei_client": [ - "moe.nea.firmament.rei.FirmamentReiPlugin" - ] + "client": [ + { + "adapter": "kotlin", + "value": "moe.nea.firmament.Firmament" + } + ], + "rei_client": [ + "moe.nea.firmament.rei.FirmamentReiPlugin" + ], + "modmenu": [ + "moe.nea.firmament.modmenu.FirmamentModMenuPlugin" + ] }, - "mixins": [ - "firmament.mixins.json" - ], - "depends": { - "fabric": "*", - "fabric-language-kotlin": ">=${fabric_kotlin_version}", - "minecraft": ">=${minecraft_version}", - "fabric-key-binding-api-v1": "*" - } + "mixins": [ + "firmament.mixins.json" + ], + "depends": { + "fabric": "*", + "fabric-language-kotlin": ">=${fabric_kotlin_version}", + "minecraft": ">=${minecraft_version}", + "fabric-key-binding-api-v1": "*" + }, + "custom": { + "modmenu": { + "links": { + "modmenu.discord": "https://discord.gg/64pFP94AWA" + } + } + } } |