1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-23 14:53:26 +02:00

Merge pull request #316 from necrodoom/patch-46

throw exception on banexempt
This commit is contained in:
Chris Ward
2013-02-10 01:34:53 -08:00

View File

@@ -41,7 +41,7 @@ public class Commandban extends EssentialsCommand
if (sender instanceof Player if (sender instanceof Player
&& !ess.getUser(sender).isAuthorized("essentials.ban.offline")) && !ess.getUser(sender).isAuthorized("essentials.ban.offline"))
{ {
sender.sendMessage(_("banExempt")); throw new Exception(_("banExempt"));
return; return;
} }
} }
@@ -49,7 +49,7 @@ public class Commandban extends EssentialsCommand
{ {
if (user.isAuthorized("essentials.ban.exempt") && sender instanceof Player) if (user.isAuthorized("essentials.ban.exempt") && sender instanceof Player)
{ {
sender.sendMessage(_("banExempt")); throw new Exception(_("banExempt"));
return; return;
} }
} }