mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-22 02:35:21 +01:00
Changed ASBCommand to BSBCommand
This commit is contained in:
parent
3e381ec1f6
commit
ba9a59df16
@ -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);
|
||||
|
4
src/main/java/us/tastybento/bskyblock/commands/ASBCommand.java → src/main/java/us/tastybento/bskyblock/commands/BSBCommand.java
Executable file → Normal file
4
src/main/java/us/tastybento/bskyblock/commands/ASBCommand.java → src/main/java/us/tastybento/bskyblock/commands/BSBCommand.java
Executable file → Normal 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
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user