geforkt von Mirrors/Velocity
A little cleanup on the GameProfileRequestEvent.
Dieser Commit ist enthalten in:
Ursprung
87ffb1ac2f
Commit
4fb415c845
@ -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() {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren