Essentials/Essentials/src/com/earth2me/essentials/commands/Commandping.java

30 lines
718 B
Java

package com.earth2me.essentials.commands;
import com.earth2me.essentials.CommandSource;
import static com.earth2me.essentials.I18n.tl;
import com.earth2me.essentials.utils.FormatUtil;
import org.bukkit.Server;
// This command can be used to echo messages to the users screen, mostly useless but also an #EasterEgg
public class Commandping extends EssentialsCommand
{
public Commandping()
{
super("ping");
}
@Override
public void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception
{
if (args.length < 1)
{
sender.sendMessage(tl("pong"));
}
else
{
sender.sendMessage(FormatUtil.replaceFormat(getFinalArg(args, 0)));
}
}
}