SteamWar/BungeeCore
Archiviert
13
2

Fix team join
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Lixfel 2024-04-14 17:44:59 +02:00
Ursprung 59b2e397ba
Commit de51db2667

Datei anzeigen

@ -162,7 +162,7 @@ public class TeamCommand extends SWCommand {
for(int inv : invs){
Team team = Team.get(inv);
if(team.getTeamName().equals(args[0])){
if(team.getTeamKuerzel().equalsIgnoreCase(args[0]) || team.getTeamName().equalsIgnoreCase(args[0])){
t = inv;
break;
}