diff --git a/core/src/main/java/com/github/games647/fastlogin/core/shared/FastLoginCore.java b/core/src/main/java/com/github/games647/fastlogin/core/shared/FastLoginCore.java index c1fca7db..56423b87 100644 --- a/core/src/main/java/com/github/games647/fastlogin/core/shared/FastLoginCore.java +++ b/core/src/main/java/com/github/games647/fastlogin/core/shared/FastLoginCore.java @@ -144,7 +144,6 @@ public class FastLoginCore

> { resolver.setMaxNameRequests(config.getInt("mojang-request-limit")); resolver.setProxySelector(new RotatingProxySelector(proxies)); - resolver.setOutgoingAddresses(addresses); } private AntiBotService createAntiBotService(Configuration botSection) { diff --git a/core/src/main/resources/config.yml b/core/src/main/resources/config.yml index 3685a3ae..ee51c5ef 100644 --- a/core/src/main/resources/config.yml +++ b/core/src/main/resources/config.yml @@ -173,22 +173,6 @@ premium-warning: true # every environment is different, and so it might not work for you as it did for me. useProxyAgnosticResolver: false -# If you have autoRegister or nameChangeCheck enabled, you could be rate-limited by Mojang. -# The requests of the both options will be only made by FastLogin if the username is unknown to the server -# You are allowed to make 600 requests per 10-minutes (60 per minute) -# If you own a big server this value could be too low -# Once the limit is reached, new players are always logged in as cracked until the rate-limit is expired. -# (to the next ten minutes) -# -# The limit is IP-wide. If you have multiple IPv4-addresses you specify them here. FastLogin will then use it in -# rotating order --> 5 different IP-addresses 5 * 600 per 10 minutes -# If this list is empty only the default one will be used -# -# Lists are created like this: -#ip-addresses: -# - 192-168-0-2 -ip-addresses: [] - # How many requests should be established to the Mojang API for Name -> UUID requests. Some other plugins as well # as the head Minecraft block make such requests as well. Using this option you can limit the amount requests this # plugin should make.