From 711d42d6042e1700abe33b4832eeb75d6e1a9a12 Mon Sep 17 00:00:00 2001 From: snowleo Date: Sun, 8 Apr 2012 00:07:53 +0200 Subject: Server-Layer Part 1 --- EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java') diff --git a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java index 23bd34170..0c9e8d91c 100644 --- a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java +++ b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java @@ -1,6 +1,7 @@ package com.earth2me.essentials.xmpp; import com.earth2me.essentials.Console; +import com.earth2me.essentials.api.server.ICommandSender; import com.earth2me.essentials.commands.EssentialsCommand; import com.earth2me.essentials.commands.NotEnoughArgumentsException; import org.bukkit.command.CommandSender; @@ -10,7 +11,7 @@ import org.bukkit.entity.Player; public class Commandxmpp extends EssentialsCommand { @Override - protected void run(final CommandSender sender, final String commandLabel, final String[] args) throws NotEnoughArgumentsException + protected void run(final ICommandSender sender, final String commandLabel, final String[] args) throws NotEnoughArgumentsException { if (args.length < 2) { -- cgit v1.2.3