Changed ASBCommand to BSBCommand

This commit is contained in:
Poslovitch 2017-05-21 08:06:26 +02:00
parent 3e381ec1f6
commit ba9a59df16
3 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ import org.bukkit.command.CommandSender;
import us.tastybento.bskyblock.BSkyBlock;
public class AdminCommand extends ASBCommand{
public class AdminCommand extends BSBCommand{
public AdminCommand(BSkyBlock plugin) {
super(plugin);

View File

@ -21,10 +21,10 @@ import us.tastybento.bskyblock.util.Util;
*
* @author Poslovitch
*/
public abstract class ASBCommand implements CommandExecutor, TabCompleter{
public abstract class BSBCommand implements CommandExecutor, TabCompleter{
private Map<String, CommandArgumentHandler> arguments;
protected ASBCommand(BSkyBlock plugin){
protected BSBCommand(BSkyBlock plugin){
arguments = new HashMap<String, CommandArgumentHandler>();
// Automatically register the help argument

View File

@ -18,7 +18,7 @@ import us.tastybento.bskyblock.util.VaultHelper;
* @author Tastybento
* @author Poslovitch
*/
public class IslandCommand extends ASBCommand{
public class IslandCommand extends BSBCommand{
private BSkyBlock plugin;
public IslandCommand(BSkyBlock plugin) {