rebrand and first mixin \o/

This commit is contained in:
2022-11-13 15:26:18 +01:00
parent 3cf796d148
commit ff1cbb8644
9 changed files with 71 additions and 58 deletions

Before

Width:  |  Height:  |  Size: 453 B

After

Width:  |  Height:  |  Size: 453 B

@@ -0,0 +1,4 @@
{
"gamerule.magmaBlockDamage": "Magma block damage",
"gamerule.magmaBlockDamage.description": "Controls if magma blocks should do damage when stepped on"
}
+8 -8
View File
@@ -1,16 +1,16 @@
{
"schemaVersion": 1,
"id": "modid",
"id": "moregamerules",
"version": "${version}",
"name": "Example Mod",
"description": "This is an example description! Tell everyone what your mod is about!",
"name": "More Game Rules",
"description": "More gamerules for easy gameplay customization",
"authors": [
"Me!"
"YouHaveTrouble"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
"homepage": "https://youhavetrouble.me/",
"sources": "https://github.com/YouHaveTrouble/MoreGameRules"
},
"license": "CC0-1.0",
@@ -19,11 +19,11 @@
"environment": "*",
"entrypoints": {
"main": [
"net.fabricmc.example.ExampleMod"
"me.youhavetrouble.moregamerules.MoreGameRules"
]
},
"mixins": [
"modid.mixins.json"
"moregamerules.mixins.json"
],
"depends": {
@@ -1,12 +1,12 @@
{
"required": true,
"minVersion": "0.8",
"package": "net.fabricmc.example.mixin",
"package": "me.youhavetrouble.moregamerules.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"ExampleMixin"
"mixins": [],
"client": [],
"server": [
"MagmaBlockMixin"
],
"injectors": {
"defaultRequire": 1