diff options
author | nea <nea@nea.moe> | 2023-07-21 22:13:51 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-07-21 22:13:51 +0200 |
commit | 538827af3bfccbc4cee1ff2e9cb76922108ace9e (patch) | |
tree | 65f30eff88d964b83ddd38811044cf2116a53991 | |
parent | 7ac205db0ecf96fa76b4fcb3c6a748692260c8c6 (diff) | |
download | firmament-538827af3bfccbc4cee1ff2e9cb76922108ace9e.tar.gz firmament-538827af3bfccbc4cee1ff2e9cb76922108ace9e.tar.bz2 firmament-538827af3bfccbc4cee1ff2e9cb76922108ace9e.zip |
Include access widener
-rw-r--r-- | src/main/resources/fabric.mod.json | 75 |
1 files changed, 38 insertions, 37 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 16daa92..26c4763 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -1,41 +1,42 @@ { - "schemaVersion": 1, - "id": "firmament", - "version": "${version}", - "name": "Firmament", - "description": "Firmament powered by NEU", - "authors": [ - { - "name": "Linnea Gräf", - "contact": { - "email": "nea@nea89.moe" - } - } - ], - "contact": { - "discord": "https://discord.gg/moulberry", - "sources": "https://git.nea.moe/nea/firmament/" - }, - "license": "ARR", - "icon": "assets/firmament/icon.png", - "environment": "client", - "entrypoints": { - "main": [ - "moe.nea.firmament.Firmament::onInitialize" - ], - "client": [ - "moe.nea.firmament.Firmament::onClientInitialize" - ], - "rei_client": [ - "moe.nea.firmament.rei.FirmamentReiPlugin" - ], - "modmenu": [ - "moe.nea.firmament.modmenu.FirmamentModMenuPlugin" - ], - "jarvis": [ - "moe.nea.firmament.jarvis.JarvisIntegration" - ] - }, + "schemaVersion": 1, + "id": "firmament", + "version": "${version}", + "name": "Firmament", + "description": "Firmament powered by NEU", + "authors": [ + { + "name": "Linnea Gräf", + "contact": { + "email": "nea@nea89.moe" + } + } + ], + "contact": { + "discord": "https://discord.gg/moulberry", + "sources": "https://git.nea.moe/nea/firmament/" + }, + "license": "ARR", + "accessWidener": "firmament.accesswidener", + "icon": "assets/firmament/icon.png", + "environment": "client", + "entrypoints": { + "main": [ + "moe.nea.firmament.Firmament::onInitialize" + ], + "client": [ + "moe.nea.firmament.Firmament::onClientInitialize" + ], + "rei_client": [ + "moe.nea.firmament.rei.FirmamentReiPlugin" + ], + "modmenu": [ + "moe.nea.firmament.modmenu.FirmamentModMenuPlugin" + ], + "jarvis": [ + "moe.nea.firmament.jarvis.JarvisIntegration" + ] + }, "mixins": [ "firmament.mixins.json" ], |