diff --git a/core/src/mindustry/net/ArcNetProvider.java b/core/src/mindustry/net/ArcNetProvider.java index 4051453c38..f23d56da8a 100644 --- a/core/src/mindustry/net/ArcNetProvider.java +++ b/core/src/mindustry/net/ArcNetProvider.java @@ -113,8 +113,6 @@ public class ArcNetProvider implements NetProvider{ //kill connections above the limit to prevent spam if((playerLimitCache > 0 && server.getConnections().length > playerLimitCache) || netServer.admins.isDosBlacklisted(ip)){ - Log.info("Closing connection @ - IP marked as a potential DOS attack.", ip); - connection.close(DcReason.closed); return; }