removing BukkitTelnet from untouchable plugins

This commit is contained in:
Elmon11 2021-02-17 22:03:35 +01:00 committed by GitHub
parent 4023394562
commit ec51cb7408
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ import org.bukkit.plugin.PluginManager;
public class Command_plugincontrol extends FreedomCommand
{
private final List<String> UNTOUCHABLE_PLUGINS = Arrays.asList(plugin.getName(), "BukkitTelnet");
private final List<String> UNTOUCHABLE_PLUGINS = Arrays.asList(plugin.getName());
@Override
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
@ -190,4 +190,4 @@ public class Command_plugincontrol extends FreedomCommand
}
return null;
}
}
}