SteamWar/FightSystem
Archiviert
13
1

Join request with leader names instead of team names
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Lixfel 2024-01-18 23:48:46 +01:00
Ursprung faebc3cace
Commit 918f309625

Datei anzeigen

@ -50,7 +50,7 @@ public class GUI {
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
private static void addTeamRequest(Player p, SWInventory inv, int pos, FightTeam team) { private static void addTeamRequest(Player p, SWInventory inv, int pos, FightTeam team) {
byte colorCode = ColorConverter.chat2dye(team.getColor()).getDyeData(); byte colorCode = ColorConverter.chat2dye(team.getColor()).getDyeData();
inv.setItem(pos, SWItem.getDye(colorCode), colorCode, msg.parse("JOIN_REQUEST_TEAM", p, team.getColoredName()), click -> { inv.setItem(pos, SWItem.getDye(colorCode), colorCode, msg.parse("JOIN_REQUEST_TEAM", p, team.getColor() + team.getLeader().getEntity().getName()), click -> {
p.closeInventory(); p.closeInventory();
new JoinRequest(p, team); new JoinRequest(p, team);
}); });