Skip to content

Commit

Permalink
Add fabric config template
Browse files Browse the repository at this point in the history
  • Loading branch information
yogwoggf committed Apr 22, 2024
1 parent 6b6a962 commit 23b6309
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/main/resources/fabric.mod.template.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"schemaVersion": 1,
"id": "puffy-anti-exploit",
"version": "${version}",
"name": "puffy-anti-exploit",
"description": "A server-side anti exploit which aims to reduce the possible amount of advantages a player can obtain with a hacked client. This mod does not attempt to ban such players, it only aims to fix certain parts of the server and gently counter these players.",
"authors": [
"Me!"
],
"accessWidener": "puffy-anti-exploit.accesswidener",
"contact": {
"homepage": "https://modrinth.com/mod/puffy-anti-exploit",
"sources": "https://github.com/yogwoggf/puffy-anti-exploit"
},
"license": "CC0-1.0",
"icon": "assets/puffy-anti-exploit/icon.png",
"environment": "server",
"entrypoints": {
"main": [
{
"value": "com.puffy.PuffyAntiExploit",
"adapter": "kotlin"
}
]
},
"mixins": [
"puffy-anti-exploit.mixins.json"
],
"depends": {
"fabricloader": ">=0.15.9",
"minecraft": "~1.20.1",
"java": ">=17",
"fabric-api": "*",
"fabric-language-kotlin": ">=1.9.23"
}
}

0 comments on commit 23b6309

Please sign in to comment.