diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-09-13 17:33:21 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-09-13 17:33:21 -0600 |
commit | a871a8e46c7d0f4443f35160c5b221a0e4276a7d (patch) | |
tree | 230e9f6228be723874bdac2518a0e88abb6f6fdb /src/net/brysonsteck/Resurrection | |
parent | 897c2b72e62da77ccb267b5b33b3e9c4f376333a (diff) | |
download | resurrection-a871a8e46c7d0f4443f35160c5b221a0e4276a7d.tar resurrection-a871a8e46c7d0f4443f35160c5b221a0e4276a7d.tar.gz resurrection-a871a8e46c7d0f4443f35160c5b221a0e4276a7d.tar.bz2 |
removed semicolon from players name in debug mode
Diffstat (limited to 'src/net/brysonsteck/Resurrection')
-rw-r--r-- | src/net/brysonsteck/Resurrection/player/PlayerData.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/brysonsteck/Resurrection/player/PlayerData.java b/src/net/brysonsteck/Resurrection/player/PlayerData.java index ceb8e38..d663c8e 100644 --- a/src/net/brysonsteck/Resurrection/player/PlayerData.java +++ b/src/net/brysonsteck/Resurrection/player/PlayerData.java @@ -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) { |