diff --git a/src/nu/nerd/tpcontrol/TPControl.java b/src/nu/nerd/tpcontrol/TPControl.java index f4148cd..e99d0ca 100755 --- a/src/nu/nerd/tpcontrol/TPControl.java +++ b/src/nu/nerd/tpcontrol/TPControl.java @@ -609,7 +609,7 @@ private void cmdBlock(CommandSender sender, String[] args) { User u2 = getUser(p2); if(args.length == 0) { - PrettyPrintUUIDList(sender, "Blocked: ", u2.getFriends()); + PrettyPrintUUIDList(sender, "Blocked: ", u2.getBlocked()); } else if (args.length == 1) { if(u2.addBlocked(args[0])) { messagePlayer(p2, args[0] + " was blocked from teleporting to you.", ChatColor.GREEN); @@ -642,7 +642,7 @@ private void cmdUnblock(CommandSender sender, String[] args) { User u2 = getUser(p2); if(args.length == 0) { - PrettyPrintUUIDList(sender, "Blocked: ", u2.getFriends()); + PrettyPrintUUIDList(sender, "Blocked: ", u2.getBlocked()); } else if (args.length == 1) { if(u2.delBlocked(args[0])) { messagePlayer(p2, args[0] + " was unblocked from teleporting to you.", ChatColor.GREEN);