mirror of
https://github.com/essentials/Essentials.git
synced 2025-09-25 13:49:12 +02:00
23 lines
418 B
Java
23 lines
418 B
Java
package com.earth2me.essentials.permissions;
|
|
|
|
import com.earth2me.essentials.commands.EssentialsCommand;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
|
|
public class Commandmanuadd extends EssentialsCommand
|
|
{
|
|
public Commandmanuadd()
|
|
{
|
|
super("manuadd");
|
|
}
|
|
|
|
@Override
|
|
protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|