Archiviert
1
0

Hotfix OutOfBoundsException

Dieser Commit ist enthalten in:
Lixfel 2020-02-02 08:17:35 +01:00
Ursprung a71bf5683e
Commit 583760c036
2 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -88,4 +88,8 @@ public class ArenaMode {
public String getChatName(){ public String getChatName(){
return chatNames.get(0); return chatNames.get(0);
} }
public boolean hasChatName(){
return !chatNames.isEmpty();
}
} }

Datei anzeigen

@ -50,6 +50,8 @@ public class FightCommand extends BasicCommand {
TextComponent start = new TextComponent(); TextComponent start = new TextComponent();
TextComponent current = start; TextComponent current = start;
for(ArenaMode mode : ArenaMode.getAllModes()){ for(ArenaMode mode : ArenaMode.getAllModes()){
if(!mode.hasChatName())
continue;
String command = precommand + mode.getChatName(); String command = precommand + mode.getChatName();
current.setBold(true); current.setBold(true);
current.setColor(ChatColor.GRAY); current.setColor(ChatColor.GRAY);