Skip to content

Commit

Permalink
Fix: launchers reading mod as libninepatch (#2147)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatGravyBoat authored Jun 25, 2024
1 parent 25be349 commit e88f416
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ loom {
// Tasks:
tasks.processResources {
inputs.property("version", version)
filesMatching("mcmod.info") {
filesMatching(listOf("mcmod.info", "fabric.mod.json")) {
expand("version" to version)
}
}
Expand Down
12 changes: 12 additions & 0 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"schemaVersion": 1,
"version": "${version}",
"id": "skyhanni",
"name": "SkyHanni",
"description": "SkyHanni is a Minecraft Mod for Hypixel SkyBlock.",
"icon": "assets/skyhanni/logo.png",
"authors": [],
"depends": {
"minecraft": "1.8.9"
}
}

0 comments on commit e88f416

Please sign in to comment.