mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 12:23:59 +00:00
23f0f98af3
Co-Authored-By: md678685 <1917406+md678685@users.noreply.github.com> Basically cleans up a bunch of warnings that are easily suppressed.
23 lines
714 B
Java
23 lines
714 B
Java
package com.earth2me.essentials.commands;
|
|
|
|
import com.earth2me.essentials.CommandSource;
|
|
import com.earth2me.essentials.utils.StringUtil;
|
|
import org.bukkit.Server;
|
|
|
|
import static com.earth2me.essentials.I18n.tl;
|
|
|
|
|
|
public class Commandjails extends EssentialsCommand {
|
|
public Commandjails() {
|
|
super("jails");
|
|
}
|
|
|
|
@Override
|
|
protected void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception {
|
|
if (ess.getJails().getCount() < 1) {
|
|
sender.sendMessage(tl("noJailsDefined"));
|
|
} else {
|
|
sender.sendMessage(tl("jailList", StringUtil.joinList(" ", ess.getJails().getList())));
|
|
}
|
|
}
|
|
}
|