13
0
geforkt von Mirrors/Velocity

Remove unused client settings field from ConnectedPlayer

Dieser Commit ist enthalten in:
Andrew Steinborn 2018-08-26 23:23:13 -04:00
Ursprung 8e0ca2033e
Commit db3f2b86e1

Datei anzeigen

@ -56,7 +56,6 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player {
private int tryIndex = 0;
private long ping = -1;
private VelocityServerConnection connectedServer;
private ClientSettings clientSettings;
private VelocityServerConnection connectionInFlight;
private PlayerSettings settings;
@ -180,10 +179,6 @@ public class ConnectedPlayer implements MinecraftConnectionAssociation, Player {
return connectedServer;
}
public ClientSettings getClientSettings() {
return clientSettings;
}
public void handleConnectionException(ServerInfo info, Throwable throwable) {
String error = ThrowableUtils.briefDescription(throwable);
String userMessage;