Archiviert
13
0

Correctly clone WrappedServerPing when the player count is hidden.

Dieser Commit ist enthalten in:
Kristian S. Stangeland 2014-01-01 17:16:14 +01:00
Ursprung a0280a76d4
Commit 5c92a46cfa

Datei anzeigen

@ -312,10 +312,15 @@ public class WrappedServerPing extends AbstractWrapper {
copy.setPlayers(getPlayers());
copy.setFavicon(getFavicon());
copy.setMotD(motd != null ? motd.deepClone() : null);
copy.setPlayersMaximum(getPlayersMaximum());
copy.setPlayersOnline(getPlayersOnline());
copy.setVersionName(getVersionName());
copy.setVersionProtocol(getVersionProtocol());
if (isPlayersVisible()) {
copy.setPlayersMaximum(getPlayersMaximum());
copy.setPlayersOnline(getPlayersOnline());
} else {
copy.setPlayersVisible(false);
}
return copy;
}