Major update

Added configuration for delay and attempts
Added commands to reload and change config
Added support for 1.16
Added support for ModMenu and AuthMe
Improved reconnecting logic to be more efficient and cleaner looking
Improved countdown overlay
This commit is contained in:
Bstn1802
2021-01-05 03:06:41 +01:00
parent 0daf476c92
commit e3187ee615
19 changed files with 420 additions and 119 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 382 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 388 KiB

View File

@ -6,7 +6,9 @@
"mixins": [
],
"client": [
"MixinClientPlayNetworkHandler",
"MixinDisconnectedScreen",
"MixinClientPlayerEntity",
"MixinMinecraftClient"
],
"injectors": {

View File

@ -1,22 +1,23 @@
{
"schemaVersion": 1,
"id": "autoreconnect",
"version": "1.0.1",
"version": "1.1.0",
"name": "AutoReconnect",
"description": "This mod allows you to afk without fear of getting disconnected. It will make 4 attempts to reconnect you to the server you were disconnected from, with a delay of 3, 10, 60 and 300 seconds.",
"description": "This mod will automatically try to reconnect you back to a server if you got disconnected.\nBy default, it will make 4 attempts after 3, 10, 30 and 60 seconds.",
"authors": [
"Bstn1802"
],
"contact": {
"homepage": "https://github.com/Bstn1802",
"sources": "https://github.com/Bstn1802/AutoReconnect"
"homepage": "https://www.curseforge.com/minecraft/mc-mods/autoreconnect",
"sources": "https://github.com/Bstn1802/AutoReconnect",
"issues": "https://github.com/Bstn1802/AutoReconnect/issues"
},
"license": "CC0-1.0",
"icon": "assets/icon.png",
"icon": "assets/icon16.png",
"environment": "*",
"environment": "client",
"entrypoints": {
"main": [
"net.autoreconnect.AutoReconnect"
@ -29,9 +30,6 @@
"depends": {
"fabricloader": ">=0.7.4",
"fabric": "*",
"minecraft": "1.16.x"
},
"suggests": {
"flamingo": "*"
"minecraft": ">=1.16"
}
}