aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/fabric.mod.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r--src/main/resources/fabric.mod.json14
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"
}
}