Prevents Bungee from sending itself Ping requests for #361

This commit is contained in:
Rsl1122 2017-10-24 12:25:25 +03:00
parent 70057c1105
commit 911af1c0b3

View File

@ -129,6 +129,9 @@ public class BungeeServerInfoManager {
}
public void serverConnected(UUID serverUUID) {
if (plugin.getServerUuid().equals(serverUUID)) {
return;
}
Log.info("Received a connection from a Bukkit server..");
if (onlineServers.contains(serverUUID)) {
sendConfigSettings(serverUUID);