diff options
| author | inyourwalls <inyourwalls@tutanota.com> | 2024-02-19 17:46:42 -0500 |
|---|---|---|
| committer | inyourwalls <inyourwalls@tutanota.com> | 2024-02-19 17:46:42 -0500 |
| commit | 327be47178bebb323f618c6a6d36a12d3b15dbe4 (patch) | |
| tree | 3332675ceb9d438428bdc2b89a3f05e95c057cf2 /src/main/resources/fabric.mod.json | |
| parent | fc6f881f9ca78c9f81e5a40291f9bd292789219a (diff) | |
create config class, start working on config screen
Diffstat (limited to '')
| -rw-r--r-- | src/main/resources/fabric.mod.json | 14 |
1 files changed, 11 insertions, 3 deletions
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" } } |
