diff options
author | Keuin <[email protected]> | 2020-12-18 20:52:04 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2020-12-18 20:52:04 +0800 |
commit | ac5bdf4a3ca555fa4638d6fad6b06b9941ad3ba2 (patch) | |
tree | c995e65c2619e707260fb9a04500fb5cc25b031c /src/main/resources/fabric.mod.json | |
parent | dc20a92e15d43bc87a97fc418475870311f300c2 (diff) |
First version: implemented disabling fish schooling.
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..1ad45f2 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,33 @@ +{ + "schemaVersion": 1, + "id": "ohmyvanillamc", + "version": "${version}", + "name": "Oh My Vanilla Minecraft", + "description": "What's wrong with my Minecraft?", + "authors": [ + "trueKeuin" + ], + "contact": { + "homepage": "https://www.keuin.cc", + "sources": "https://github.com/keuin/OhMyVanillaMinecraft" + }, + "license": "MIT", + "icon": "assets/ohmyvanillamc/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "com.keuin.ohmyvanillamc.OhMyVanillaMinecraft" + ] + }, + "mixins": [ + "ohmyvanillamc.mixins.json" + ], + "depends": { + "fabricloader": ">=0.7.4", + "fabric": "*", + "minecraft": "1.15.x" + }, + "suggests": { + "another-mod": "*" + } +} |