From f2525c9300903faca7c99269ea50d0b4515fef09 Mon Sep 17 00:00:00 2001 From: blackilykat Date: Sun, 30 Jun 2024 03:38:26 +0200 Subject: [PATCH] Added more stuff to fabric.mod.json --- src/main/resources/fabric.mod.json | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index fbd9679..65450e1 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -2,23 +2,29 @@ "schemaVersion": 1, "id": "no_double_sneak", "version": "${version}", - "name": "No Double Sneak", - "description": "Fixes the annoying bug where sneaking looks wrong in laggy servers (MC-159163)", - "authors": [ - "Blackilykat" - ], - "contact": { - "repo": "https://github.com/blackilykat/No Double Sneak" - }, - "license": "MIT", - "icon": "assets/no_double_sneak/icon.png", "environment": "client", - "entrypoints": {}, "mixins": [ "no_double_sneak.mixins.json" ], "depends": { "fabricloader": ">=${loader_version}", "minecraft": "${minecraft_version}" - } + }, + "name": "No Double Sneak", + "description": "Fixes the annoying bug where sneaking looks wrong in laggy servers (MC-159163)", + "authors": [ + { + "name": "Blackilykat", + "contact": { + "email": "contact@blackilykat.dev" + } + } + ], + "contact": { + "homepage": "https://github.com/Blackilykat/no_double_sneak", + "issues": "https://github.com/Blackilykat/no_double_sneak/issues", + "sources": "https://github.com/Blackilykat/no_double_sneak" + }, + "license": "MIT", + "icon": "assets/no_double_sneak/icon.png" }