Fix kits to only show to people who can use them.

This commit is contained in:
KHobbits 2012-06-10 18:27:55 +01:00
parent 8c434783a2
commit 57c1d75779

View File

@ -19,7 +19,8 @@ public class Commandkit extends EssentialsCommand
{
if (args.length < 1)
{
listKits(user);
final String kitList = Kit.listKits(ess, user);
user.sendMessage(kitList.length() > 0 ? _("kits", kitList) : _("noKits"));
throw new NoChargeException();
}
else if (args.length > 1 && user.isAuthorized("essentials.kit.others"))
@ -40,7 +41,8 @@ public class Commandkit extends EssentialsCommand
{
if (args.length < 2)
{
listKits(sender);
final String kitList = Kit.listKits(ess, null);
sender.sendMessage(kitList.length() > 0 ? _("kits", kitList) : _("noKits"));
throw new NoChargeException();
}
else
@ -56,19 +58,6 @@ public class Commandkit extends EssentialsCommand
}
}
private void listKits(CommandSender sender) throws Exception
{
final String kitList = Kit.listKits(ess, null);
if (kitList.length() > 0)
{
sender.sendMessage(_("kits", kitList));
}
else
{
sender.sendMessage(_("noKits"));
}
}
private void giveKit(User userTo, User userFrom, String kitName) throws Exception
{
final Map<String, Object> kit = ess.getSettings().getKit(kitName);