Remove permission.

This commit is contained in:
Moo0 2011-05-24 16:25:45 +01:00
parent 7074963fb1
commit 69af41f1e5

View File

@ -434,13 +434,11 @@ public static void info(CommandContext args, WorldGuardPlugin plugin,
+ owners.toUserFriendlyString()); + owners.toUserFriendlyString());
sender.sendMessage(ChatColor.LIGHT_PURPLE + "Members: " sender.sendMessage(ChatColor.LIGHT_PURPLE + "Members: "
+ members.toUserFriendlyString()); + members.toUserFriendlyString());
if (plugin.hasPermission(sender, "worldguard.region.bounds")) { BlockVector min = region.getMinimumPoint();
BlockVector min = region.getMinimumPoint(); BlockVector max = region.getMaximumPoint();
BlockVector max = region.getMaximumPoint(); String c = "(" + min.getBlockX() + "," + min.getBlockY() + "," + min.getBlockZ() + ")";
String c = "(" + min.getBlockX() + "," + min.getBlockY() + "," + min.getBlockZ() + ")"; c += " (" +max.getBlockX() + "," + max.getBlockY() + "," + max.getBlockZ() + ")";
c += " (" +max.getBlockX() + "," + max.getBlockY() + "," + max.getBlockZ() + ")"; sender.sendMessage(ChatColor.LIGHT_PURPLE + "Bounds: " + c);
sender.sendMessage(ChatColor.LIGHT_PURPLE + "Bounds: " + c);
}
} }
@Command(aliases = {"list"}, @Command(aliases = {"list"},