removed semicolon from players name in debug mode
This commit is contained in:
parent
897c2b72e6
commit
a871a8e46c
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -62,7 +62,7 @@ public class PlayerData {
|
||||||
this.playerData.put(playerData[0], playerHash);
|
this.playerData.put(playerData[0], playerHash);
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
TimeCheck timeCheck = new TimeCheck(Long.parseLong(playerData[2]));
|
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) {
|
} catch (IOException e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue