summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandping.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/Commandping.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandping.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandping.java b/Essentials/src/com/earth2me/essentials/commands/Commandping.java
index b5ab2bd18..e87542acd 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandping.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandping.java
@@ -7,8 +7,8 @@ import com.earth2me.essentials.api.IUser;
public class Commandping extends EssentialsCommand
{
@Override
- public void run(final IUser player, final String[] args) throws Exception
+ public void run(final IUser user, final String commandLabel, final String[] args) throws Exception
{
- player.sendMessage(_("pong"));
+ user.sendMessage(_("pong"));
}
}