First commit

This commit is contained in:
Bstn1802
2020-09-03 21:12:10 +02:00
commit 14563be594
18 changed files with 781 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 382 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 KiB

View File

@ -0,0 +1,15 @@
{
"required": true,
"minVersion": "0.8",
"package": "net.autoreconnect.mixin",
"compatibilityLevel": "JAVA_8",
"mixins": [
],
"client": [
"MixinDisconnectedScreen",
"MixinMinecraftClient"
],
"injectors": {
"defaultRequire": 1
}
}

View File

@ -0,0 +1,37 @@
{
"schemaVersion": 1,
"id": "autoreconnect",
"version": "1.0.0",
"name": "Example Mod",
"description": "This is an example description! Tell everyone what your mod is about!",
"authors": [
"Bstn1802"
],
"contact": {
"homepage": "https://github.com/Bstn1802",
"sources": "https://github.com/Bstn1802/AutoReconnect"
},
"license": "CC0-1.0",
"icon": "assets/modid/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"net.autoreconnect.AutoReconnect"
]
},
"mixins": [
"autoreconnect.mixins.json"
],
"depends": {
"fabricloader": ">=0.7.4",
"fabric": "*",
"minecraft": "1.16.x"
},
"suggests": {
"flamingo": "*"
}
}