13
0
geforkt von Mirrors/Velocity

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 final boolean onlineMode;
private GameProfile gameProfile; private GameProfile gameProfile;
public GameProfileRequestEvent(InboundConnection connection, GameProfile originalProfile, boolean onlinemode) { public GameProfileRequestEvent(InboundConnection connection, GameProfile originalProfile, boolean onlineMode) {
this.connection = connection; this.connection = Preconditions.checkNotNull(connection, "connection");
this.originalProfile = Preconditions.checkNotNull(originalProfile, "profile"); this.originalProfile = Preconditions.checkNotNull(originalProfile, "originalProfile");
this.username = originalProfile.getName(); this.username = originalProfile.getName();
this.onlineMode = onlinemode; this.onlineMode = onlineMode;
} }
public InboundConnection getConnection() { public InboundConnection getConnection() {