geforkt von Mirrors/Velocity
Document ServerPreConnectEvent more carefully.
Dieser Commit ist enthalten in:
Ursprung
8f859b980c
Commit
edfdcf3d53
@ -30,6 +30,10 @@ public final class ServerPreConnectEvent implements
|
|||||||
this.result = ServerResult.allowed(originalServer);
|
this.result = ServerResult.allowed(originalServer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the player connecting to the server.
|
||||||
|
* @return the player connecting to the server
|
||||||
|
*/
|
||||||
public Player getPlayer() {
|
public Player getPlayer() {
|
||||||
return player;
|
return player;
|
||||||
}
|
}
|
||||||
@ -44,6 +48,12 @@ public final class ServerPreConnectEvent implements
|
|||||||
this.result = Preconditions.checkNotNull(result, "result");
|
this.result = Preconditions.checkNotNull(result, "result");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the server that the player originally tried to connect to. To get the server the
|
||||||
|
* player will connect to, see the {@link ServerResult} of this event. To get the server the
|
||||||
|
* player is currently on when this event is fired, use {@link Player#getCurrentServer()}.
|
||||||
|
* @return the server that the player originally tried to connect to
|
||||||
|
*/
|
||||||
public RegisteredServer getOriginalServer() {
|
public RegisteredServer getOriginalServer() {
|
||||||
return originalServer;
|
return originalServer;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren