Fixed debugging players

This commit is contained in:
JKetelaar
2015-09-14 14:14:23 +02:00
parent c96ad6be51
commit 07e080c999
3 changed files with 4 additions and 3 deletions
@@ -13,7 +13,7 @@ public class DPlayers extends AbstractDebugger {
@Override
public void toggle() {
for (Player player : Players.getNearest()){
System.out.println("Username" + player.getName() + " Index: " + player.getIndex() + " Distance: " + player.distanceTo() + " Location: " + player.getLocation().toString());
System.out.println("Username: " + player.getName() + " Index: " + player.getIndex() + " Distance: " + player.distanceTo() + " Location: " + player.getLocation().toString());
}
}