SteamWar/BungeeCore
Archiviert
13
2

Fix TeamCommand tp no message
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
yoyosource 2022-05-28 13:12:31 +02:00
Ursprung c7f16247ca
Commit 1b61ba93e9

Datei anzeigen

@ -588,6 +588,9 @@ public class TeamCommand extends BasicCommand {
return info;
});
player.connect(serverInfo, (success, error) -> {
if (error != null) {
error.printStackTrace();
}
if (error instanceof ConnectTimeoutException) {
Message.send("TEAM_TIMEOUT", player);
}