This commit is contained in:
Gæmer
2025-07-22 18:16:17 +02:00
parent 91c0137f61
commit e28a539d90
12 changed files with 22 additions and 26 deletions

View File

@@ -1,6 +1,6 @@
{
"schemaVersion": 1,
"id": "scorched-earth",
"id": "scorched_earth",
"version": "${version}",
"name": "Scorched Earth",
"description": "This is an example description! Tell everyone what your mod is about!",
@@ -12,33 +12,31 @@
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "CC0-1.0",
"icon": "assets/scorched-earth/icon.png",
"icon": "assets/scorched_earth/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"com.smithy.scorchedearth.ScorchedEarth"
"com.smithy.scorched_earth.ScorchedEarth"
],
"client": [
"com.smithy.scorchedearth.ScorchedEarthClient"
"com.smithy.scorched_earth.ScorchedEarthClient"
],
"fabric-datagen": [
"com.smithy.scorchedearth.ScorchedEarthDataGenerator"
"com.smithy.scorched_earth.ScorchedEarthDataGenerator"
]
},
"mixins": [
"scorched-earth.mixins.json",
"scorched_earth.mixins.json",
{
"config": "scorched-earth.client.mixins.json",
"config": "scorched_earth.client.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.16.14",
"fabricloader": ">=0.16.10",
"minecraft": "~1.20.1",
"java": ">=17",
"fabric-api": "*"
},
"suggests": {
"another-mod": "*"
}
"suggests": {}
}