From ba6fd95247cdb455a7395c5583fc459e157c0bdd Mon Sep 17 00:00:00 2001 From: KHobbits Date: Mon, 15 Jul 2013 23:15:35 +0100 Subject: [PATCH] Fix radius logic --- .../earth2me/essentials/commands/Commandnear.java | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandnear.java b/Essentials/src/com/earth2me/essentials/commands/Commandnear.java index b099c331b..1f1f812b8 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandnear.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandnear.java @@ -19,12 +19,15 @@ public class Commandnear extends EssentialsCommand @Override protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception { - long chatRadius = ess.getSettings().getChatRadius(); - long radius = chatRadius; - if (radius == 0) + long maxRadius = ess.getSettings().getChatRadius(); + + if (maxRadius == 0) { - radius = 200; + maxRadius = 200; } + + long radius = maxRadius; + User otherUser = null; if (args.length > 0) @@ -55,9 +58,9 @@ public class Commandnear extends EssentialsCommand } } - if (radius > chatRadius && !user.isAuthorized("essentials.near.exemptradius")) + if (radius > maxRadius && !user.isAuthorized("essentials.near.maxexempt")) { - user.sendMessage(_("radiusTooBig", chatRadius)); + user.sendMessage(_("radiusTooBig", maxRadius)); } if (otherUser == null || user.isAuthorized("essentials.near.others"))