removed semicolon from players name in debug mode

This commit is contained in:
Bryson Steck 2021-09-13 17:33:21 -06:00
parent 897c2b72e6
commit a871a8e46c
2 changed files with 1 additions and 1 deletions

View file

@ -62,7 +62,7 @@ public class PlayerData {
this.playerData.put(playerData[0], playerHash);
if (DEBUG) {
TimeCheck timeCheck = new TimeCheck(Long.parseLong(playerData[2]));
Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + "[Res. DEBUG]: player: " + playerData[0] + " | dead: " + playerData[1] + " | ms to resurrect at: " + playerData[2]);
Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + "[Res. DEBUG]: player: " + playerData[0].replaceFirst(";","") + " | dead: " + playerData[1] + " | ms to resurrect at: " + playerData[2]);
}
}
} catch (IOException e) {