mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-20 13:31:25 +02:00
I always forget these
This commit is contained in:
@@ -3,18 +3,12 @@ package com.earth2me.essentials.xmpp;
|
||||
import com.earth2me.essentials.api.IUser;
|
||||
import com.earth2me.essentials.commands.EssentialsCommand;
|
||||
import com.earth2me.essentials.commands.NotEnoughArgumentsException;
|
||||
import org.bukkit.Server;
|
||||
|
||||
|
||||
public class Commandsetxmpp extends EssentialsCommand
|
||||
{
|
||||
public Commandsetxmpp()
|
||||
{
|
||||
super("setxmpp");
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void run(final Server server, final IUser user, final String commandLabel, final String[] args) throws NotEnoughArgumentsException
|
||||
protected void run(final IUser user, final String[] args) throws NotEnoughArgumentsException
|
||||
{
|
||||
if (args.length < 1)
|
||||
{
|
||||
|
@@ -3,20 +3,14 @@ package com.earth2me.essentials.xmpp;
|
||||
import com.earth2me.essentials.Console;
|
||||
import com.earth2me.essentials.commands.EssentialsCommand;
|
||||
import com.earth2me.essentials.commands.NotEnoughArgumentsException;
|
||||
import org.bukkit.Server;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
|
||||
public class Commandxmpp extends EssentialsCommand
|
||||
{
|
||||
public Commandxmpp()
|
||||
{
|
||||
super("xmpp");
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void run(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws NotEnoughArgumentsException
|
||||
protected void run(final CommandSender sender, final String[] args) throws NotEnoughArgumentsException
|
||||
{
|
||||
if (args.length < 2)
|
||||
{
|
||||
|
@@ -3,20 +3,14 @@ package com.earth2me.essentials.xmpp;
|
||||
import com.earth2me.essentials.commands.EssentialsCommand;
|
||||
import com.earth2me.essentials.commands.NotEnoughArgumentsException;
|
||||
import java.util.List;
|
||||
import org.bukkit.Server;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
|
||||
public class Commandxmppspy extends EssentialsCommand
|
||||
{
|
||||
public Commandxmppspy()
|
||||
{
|
||||
super("xmppspy");
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void run(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws NotEnoughArgumentsException
|
||||
protected void run(final CommandSender sender, final String[] args) throws NotEnoughArgumentsException
|
||||
{
|
||||
if (args.length < 1)
|
||||
{
|
||||
|
Reference in New Issue
Block a user