Skip to content

Commit

Permalink
Don't configure a modmenu entry point. Fix #150
Browse files Browse the repository at this point in the history
  • Loading branch information
tr7zw committed May 1, 2024
1 parent 621fd78 commit 5be77fb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"schemaVersion": 1,
"id": "${mod_id}",
"version": "${version}",
"name": "${mod_name}",
"description": "${description}",
"authors": [
"${mod_author}"
],
"contact": {
"homepage": "${homepage_url}",
"sources": "${sources_url}"
},
"license": "${license_name}",
"icon": "icon.png",
"entrypoints": {
"client": [
"${fabric_entrypoint}"
]
},
"mixins": [
"${mod_id}.mixins.json"
],
"depends": {
"minecraft": "${minecraft_version_range_fabric}",
"${fabric_api_name}": "*"
},
"custom": {
"modmenu": {
"links": {
"modmenu.discord": "https://discord.gg/UdfNaDtbwb"
}
}
}
}

0 comments on commit 5be77fb

Please sign in to comment.