3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 14:40:21 +02:00

A little cleanup on the GameProfileRequestEvent.

Dieser Commit ist enthalten in:
Andrew Steinborn 2018-08-24 21:51:31 -04:00
Ursprung 87ffb1ac2f
Commit 4fb415c845

Datei anzeigen

@ -17,11 +17,11 @@ public class GameProfileRequestEvent {
private final boolean onlineMode;
private GameProfile gameProfile;
public GameProfileRequestEvent(InboundConnection connection, GameProfile originalProfile, boolean onlinemode) {
this.connection = connection;
this.originalProfile = Preconditions.checkNotNull(originalProfile, "profile");
public GameProfileRequestEvent(InboundConnection connection, GameProfile originalProfile, boolean onlineMode) {
this.connection = Preconditions.checkNotNull(connection, "connection");
this.originalProfile = Preconditions.checkNotNull(originalProfile, "originalProfile");
this.username = originalProfile.getName();
this.onlineMode = onlinemode;
this.onlineMode = onlineMode;
}
public InboundConnection getConnection() {