[Bleeding] Added option to remove entire plugins from the help index using the help.yml file. Addresses BUKKIT-1178

This commit is contained in:
rmichela
2012-03-14 23:38:59 -04:00
committed by EvilSeph
parent a03fe6b74f
commit 7ea7959e69
7 changed files with 35 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
package org.bukkit.command.defaults;
import org.bukkit.command.Command;
import java.util.List;
public abstract class BukkitCommand extends Command{
protected BukkitCommand(String name) {
super(name);
}
protected BukkitCommand(String name, String description, String usageMessage, List<String> aliases) {
super(name, description, usageMessage, aliases);
}
}