35 lines
1.4 KiB
Java
35 lines
1.4 KiB
Java
package me.libraryaddict.disguise.commands;
|
|
|
|
import me.libraryaddict.disguise.utilities.TranslateType;
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandExecutor;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Entity;
|
|
import org.bukkit.entity.Player;
|
|
|
|
import me.libraryaddict.disguise.DisguiseAPI;
|
|
|
|
public class UndisguiseCommand implements CommandExecutor {
|
|
|
|
@Override
|
|
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
|
|
if (sender.getName().equals("CONSOLE")) {
|
|
sender.sendMessage(
|
|
TranslateType.MESSAGE.get(ChatColor.RED + "You may not use this command from the " + "console!"));
|
|
return true;
|
|
}
|
|
if (sender.hasPermission("libsdisguises.undisguise")) {
|
|
if (DisguiseAPI.isDisguised((Entity) sender)) {
|
|
DisguiseAPI.undisguiseToAll((Player) sender);
|
|
sender.sendMessage(TranslateType.MESSAGE.get(ChatColor.RED + "You are no longer disguised"));
|
|
} else {
|
|
sender.sendMessage(TranslateType.MESSAGE.get(ChatColor.RED + "You are not disguised!"));
|
|
}
|
|
} else {
|
|
sender.sendMessage(TranslateType.MESSAGE.get(ChatColor.RED + "You are forbidden to use this command."));
|
|
}
|
|
return true;
|
|
}
|
|
}
|