SteamWar/BungeeCore
Archiviert
13
2
Dieser Commit ist enthalten in:
yoyosource 2021-06-28 17:06:00 +02:00
Ursprung 91259441cb
Commit 5637311be5

Datei anzeigen

@ -71,13 +71,9 @@ public class TablistManager extends BasicListener {
private void calculateSize() { private void calculateSize() {
size = -1; size = -1;
for(Map.Entry<String, List<ProxiedPlayer>> server : playerMap.entrySet()) size += playerMap.size() * 2 + ProxyServer.getInstance().getPlayers().size();
size += 2 + server.getValue().size(); size = (size + 19) / 20 + 1;
if(size > 5) size = 5;
size = (size+19)/20;
if(size > 5)
size = 5;
} }
private synchronized void updateCustomTablist(){ private synchronized void updateCustomTablist(){
@ -224,8 +220,6 @@ public class TablistManager extends BasicListener {
i = update(currentServer, players, i); i = update(currentServer, players, i);
} }
// Shrink Down
setSize(Math.min((i + 19) / 20, 4), 20);
finish(i); finish(i);
}catch(IndexOutOfBoundsException | NullPointerException e){ }catch(IndexOutOfBoundsException | NullPointerException e){
//Ignore IndexOutOfBoundsException //Ignore IndexOutOfBoundsException