From 327be47178bebb323f618c6a6d36a12d3b15dbe4 Mon Sep 17 00:00:00 2001 From: inyourwalls Date: Mon, 19 Feb 2024 17:46:42 -0500 Subject: create config class, start working on config screen --- src/main/resources/fabric.mod.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'src/main/resources/fabric.mod.json') diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 13347a3..64444f6 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -3,7 +3,7 @@ "id": "customlevelcolour", "name": "Custom Level Colour", "version": "${version}", - "description": "One-shot mod that changes the level colour on the XP bar.", + "description": "Allows customizing the colour of the level text above the XP bar.", "authors": [ "InYourWalls" ], @@ -13,12 +13,20 @@ "license": "Unlicense", "icon": "assets/customlevelcolour/icon.png", "environment": "client", + "entrypoints": { + "client": [ + "net.inyourwalls.customlevelcolour.CustomLevelColour" + ], + "modmenu": [ + "net.inyourwalls.customlevelcolour.ModMenuIntegration" + ] + }, "mixins": [ "customlevelcolour.mixins.json" ], "depends": { - "minecraft": "1.20.4", + "fabricloader": ">=0.14.22", "java": ">=17", - "fabricloader": ">=0.15.0" + "minecraft": "~1.20.1" } } -- cgit v1.3.1