TF-EssentialsX/Essentials/src/com/earth2me/essentials/commands/Commandping.java
ementalo 92b34ec15f [trunk] translations = T's
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1424 e251c2fe-e539-e718-e476-b85c1f46cddb
2011-05-11 22:42:48 +00:00

21 lines
402 B
Java

package com.earth2me.essentials.commands;
import org.bukkit.Server;
import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
public class Commandping extends EssentialsCommand
{
public Commandping()
{
super("ping");
}
@Override
public void run(Server server, User player, String commandLabel, String[] args) throws Exception
{
player.sendMessage(Util.i18n("pong"));
}
}