mirror of
https://github.com/essentials/Essentials.git
synced 2025-09-27 06:39:03 +02:00
16 lines
399 B
Java
16 lines
399 B
Java
package net.ess3.commands;
|
|
|
|
import net.ess3.utils.Util;
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
|
|
public class Commandjails extends EssentialsCommand
|
|
{
|
|
@Override
|
|
protected void run(final CommandSender sender, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
sender.sendMessage(ChatColor.GRAY + Util.joinList(" ", ess.getJails().getList()));
|
|
}
|
|
}
|