diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/ohmyvanillamc/icon.png | bin | 0 -> 453 bytes | |||
-rw-r--r-- | src/main/resources/fabric.mod.json | 33 | ||||
-rw-r--r-- | src/main/resources/ohmyvanillamc.mixins.json | 12 |
3 files changed, 45 insertions, 0 deletions
diff --git a/src/main/resources/assets/ohmyvanillamc/icon.png b/src/main/resources/assets/ohmyvanillamc/icon.png Binary files differnew file mode 100644 index 0000000..047b91f --- /dev/null +++ b/src/main/resources/assets/ohmyvanillamc/icon.png 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": "*" + } +} diff --git a/src/main/resources/ohmyvanillamc.mixins.json b/src/main/resources/ohmyvanillamc.mixins.json new file mode 100644 index 0000000..c6ef57f --- /dev/null +++ b/src/main/resources/ohmyvanillamc.mixins.json @@ -0,0 +1,12 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "com.keuin.ohmyvanillamc.mixin", + "compatibilityLevel": "JAVA_8", + "mixins": [ + "DisableFishSchooling" + ], + "injectors": { + "defaultRequire": 1 + } +} |