We can't test for essentials.jail.exempt, if the player is offline, so added a new permission essentials.togglejail.offline

This commit is contained in:
snowleo 2011-07-19 01:27:16 +02:00
parent a65390ed98
commit c8ba06f0ee

View File

@ -5,6 +5,7 @@ import org.bukkit.Server;
import org.bukkit.command.CommandSender;
import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
import org.bukkit.entity.Player;
public class Commandtogglejail extends EssentialsCommand
@ -26,10 +27,22 @@ public class Commandtogglejail extends EssentialsCommand
if (args.length >= 2 && !p.isJailed())
{
if (p.isAuthorized("essentials.jail.exempt"))
if (p.getBase() instanceof OfflinePlayer)
{
sender.sendMessage(Util.i18n("mayNotJail"));
return;
if (sender instanceof Player
&& !ess.getUser(sender).isAuthorized("essentials.togglejail.offline"))
{
sender.sendMessage(Util.i18n("mayNotJail"));
return;
}
}
else
{
if (p.isAuthorized("essentials.jail.exempt"))
{
sender.sendMessage(Util.i18n("mayNotJail"));
return;
}
}
charge(sender);
p.setJailed(true);