This commit is contained in:
Telesphoreo 2020-09-07 15:14:30 -05:00
parent 451ef8f009
commit d67189e170
2 changed files with 0 additions and 18 deletions

View file

@ -46,23 +46,6 @@ public class LibsDisguisesBridge extends FreedomService
return libsDisguisesPlugin;
}
public Boolean isDisguised(Player player)
{
try
{
final LibsDisguises libsDisguises = getLibsDisguisesPlugin();
if (libsDisguises != null)
{
return DisguiseAPI.isDisguised(player);
}
}
catch (Exception ex)
{
FLog.severe(ex);
}
return null;
}
public void undisguiseAll(boolean staff)
{
try

View file

@ -10,7 +10,6 @@ import org.bukkit.entity.Player;
@CommandParameters(description = "Undisguise all online players on the server", usage = "/<command> [-a]", aliases = "uall")
public class Command_undisguiseall extends FreedomCommand
{
@Override
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
{