No reason to String.valueOf() these.

This commit is contained in:
GJ
2013-02-15 13:56:30 -05:00
parent b92b9c6507
commit 284002bf8b
5 changed files with 8 additions and 8 deletions

View File

@ -54,7 +54,7 @@ public class McTopAsync implements Runnable {
}
// Format: 1. Playername - skill value
sender.sendMessage(String.valueOf(place) + ". " + ChatColor.GREEN + userslist.get(i).get(1) + " - " + ChatColor.WHITE + userslist.get(i).get(0));
sender.sendMessage(place + ". " + ChatColor.GREEN + userslist.get(i).get(1) + " - " + ChatColor.WHITE + userslist.get(i).get(0));
place++;
}