From 2df5b3b3a045090c082966a061003204bb6aa098 Mon Sep 17 00:00:00 2001 From: Abbanon <37251822+Abbanon@users.noreply.github.com> Date: Sun, 17 Jan 2021 05:26:01 -0500 Subject: [PATCH] Removed Mixin stuff since this mod doesn't even use Mixins, and cleaned up a little bit of the code. --- src/main/resources/fabric.mod.json | 6 +++--- src/main/resources/modid.mixins.json | 14 -------------- 2 files changed, 3 insertions(+), 17 deletions(-) delete mode 100644 src/main/resources/modid.mixins.json diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 5fb360f..03969d0 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -6,10 +6,11 @@ "name": "Command GUI Buttons", "description": "Create GUI buttons in-game to execute commands.", "authors": [ - "JosephG" + "JosephG", + "Abbanon" ], "contact": { - "homepage": "", + "homepage": "https://www.curseforge.com/minecraft/mc-mods/command-gui-buttons", "sources": "https://github.com/joseph-garcia/command-gui-buttons" }, @@ -23,7 +24,6 @@ ] }, "mixins": [ - ], "depends": { diff --git a/src/main/resources/modid.mixins.json b/src/main/resources/modid.mixins.json deleted file mode 100644 index 21fe73a..0000000 --- a/src/main/resources/modid.mixins.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "required": true, - "minVersion": "0.8", - "package": "net.fabricmc.example.mixin", - "compatibilityLevel": "JAVA_8", - "mixins": [ - ], - "client": [ - "ExampleMixin" - ], - "injectors": { - "defaultRequire": 1 - } -}