Update to new 0.12.0 API

This commit is contained in:
tastybento 2018-10-30 18:05:23 -07:00
parent 72d5f337eb
commit 11f515f391
3 changed files with 14 additions and 16 deletions

View File

@ -91,7 +91,7 @@
<dependency> <dependency>
<groupId>world.bentobox</groupId> <groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId> <artifactId>bentobox</artifactId>
<version>0.10.1-SNAPSHOT</version> <version>0.12.0-SNAPSHOT</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -2,27 +2,27 @@ package world.bentobox.bskyblock.commands;
import java.util.List; import java.util.List;
import world.bentobox.bentobox.api.commands.admin.AdminWhyCommand;
import world.bentobox.bskyblock.BSkyBlock;
import world.bentobox.bentobox.api.commands.CompositeCommand; import world.bentobox.bentobox.api.commands.CompositeCommand;
import world.bentobox.bentobox.api.commands.admin.AdminClearResetsAllCommand; import world.bentobox.bentobox.api.commands.admin.AdminClearresetsCommand;
import world.bentobox.bentobox.api.commands.admin.AdminClearResetsCommand; import world.bentobox.bentobox.api.commands.admin.AdminClearresetsallCommand;
import world.bentobox.bentobox.api.commands.admin.AdminDeleteCommand; import world.bentobox.bentobox.api.commands.admin.AdminDeleteCommand;
import world.bentobox.bentobox.api.commands.admin.AdminGetRankCommand; import world.bentobox.bentobox.api.commands.admin.AdminGetrankCommand;
import world.bentobox.bentobox.api.commands.admin.AdminInfoCommand; import world.bentobox.bentobox.api.commands.admin.AdminInfoCommand;
import world.bentobox.bentobox.api.commands.admin.AdminRegisterCommand; import world.bentobox.bentobox.api.commands.admin.AdminRegisterCommand;
import world.bentobox.bentobox.api.commands.admin.AdminSetRankCommand; import world.bentobox.bentobox.api.commands.admin.AdminSetrankCommand;
import world.bentobox.bentobox.api.commands.admin.AdminTeleportCommand; import world.bentobox.bentobox.api.commands.admin.AdminTeleportCommand;
import world.bentobox.bentobox.api.commands.admin.AdminUnregisterCommand; import world.bentobox.bentobox.api.commands.admin.AdminUnregisterCommand;
import world.bentobox.bentobox.api.commands.admin.AdminVersionCommand; import world.bentobox.bentobox.api.commands.admin.AdminVersionCommand;
import world.bentobox.bentobox.api.commands.admin.AdminWhyCommand;
import world.bentobox.bentobox.api.commands.admin.range.AdminRangeCommand; import world.bentobox.bentobox.api.commands.admin.range.AdminRangeCommand;
import world.bentobox.bentobox.api.commands.admin.schem.AdminSchemCommand; import world.bentobox.bentobox.api.commands.admin.schem.AdminSchemCommand;
import world.bentobox.bentobox.api.commands.admin.team.AdminTeamAddCommand; import world.bentobox.bentobox.api.commands.admin.team.AdminTeamAddCommand;
import world.bentobox.bentobox.api.commands.admin.team.AdminTeamDisbandCommand; import world.bentobox.bentobox.api.commands.admin.team.AdminTeamDisbandCommand;
import world.bentobox.bentobox.api.commands.admin.team.AdminTeamKickCommand; import world.bentobox.bentobox.api.commands.admin.team.AdminTeamKickCommand;
import world.bentobox.bentobox.api.commands.admin.team.AdminTeamMakeLeaderCommand; import world.bentobox.bentobox.api.commands.admin.team.AdminTeamSetownerCommand;
import world.bentobox.bentobox.api.localization.TextVariables; import world.bentobox.bentobox.api.localization.TextVariables;
import world.bentobox.bentobox.api.user.User; import world.bentobox.bentobox.api.user.User;
import world.bentobox.bskyblock.BSkyBlock;
public class AdminCommand extends CompositeCommand { public class AdminCommand extends CompositeCommand {
@ -32,7 +32,6 @@ public class AdminCommand extends CompositeCommand {
@Override @Override
public void setup() { public void setup() {
setPermissionPrefix("bskyblock");
setPermission("admin.*"); setPermission("admin.*");
setOnlyPlayer(false); setOnlyPlayer(false);
setParametersHelp("commands.admin.help.parameters"); setParametersHelp("commands.admin.help.parameters");
@ -42,14 +41,14 @@ public class AdminCommand extends CompositeCommand {
new AdminTeleportCommand(this, "tp"); new AdminTeleportCommand(this, "tp");
new AdminTeleportCommand(this, "tpnether"); new AdminTeleportCommand(this, "tpnether");
new AdminTeleportCommand(this, "tpend"); new AdminTeleportCommand(this, "tpend");
new AdminGetRankCommand(this); new AdminGetrankCommand(this);
new AdminSetRankCommand(this); new AdminSetrankCommand(this);
new AdminInfoCommand(this); new AdminInfoCommand(this);
// Team commands // Team commands
new AdminTeamAddCommand(this); new AdminTeamAddCommand(this);
new AdminTeamKickCommand(this); new AdminTeamKickCommand(this);
new AdminTeamDisbandCommand(this); new AdminTeamDisbandCommand(this);
new AdminTeamMakeLeaderCommand(this); new AdminTeamSetownerCommand(this);
// Schems // Schems
new AdminSchemCommand(this); new AdminSchemCommand(this);
// Register/unregister islands // Register/unregister islands
@ -58,8 +57,8 @@ public class AdminCommand extends CompositeCommand {
// Range // Range
new AdminRangeCommand(this); new AdminRangeCommand(this);
// Resets // Resets
new AdminClearResetsCommand(this); new AdminClearresetsCommand(this);
new AdminClearResetsAllCommand(this); new AdminClearresetsallCommand(this);
// Delete // Delete
new AdminDeleteCommand(this); new AdminDeleteCommand(this);
// Why // Why

View File

@ -3,7 +3,6 @@ package world.bentobox.bskyblock.commands;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import world.bentobox.bskyblock.BSkyBlock;
import world.bentobox.bentobox.api.commands.CompositeCommand; import world.bentobox.bentobox.api.commands.CompositeCommand;
import world.bentobox.bentobox.api.commands.island.IslandBanCommand; import world.bentobox.bentobox.api.commands.island.IslandBanCommand;
import world.bentobox.bentobox.api.commands.island.IslandBanlistCommand; import world.bentobox.bentobox.api.commands.island.IslandBanlistCommand;
@ -19,6 +18,7 @@ import world.bentobox.bentobox.api.commands.island.IslandUnbanCommand;
import world.bentobox.bentobox.api.commands.island.team.IslandTeamCommand; import world.bentobox.bentobox.api.commands.island.team.IslandTeamCommand;
import world.bentobox.bentobox.api.localization.TextVariables; import world.bentobox.bentobox.api.localization.TextVariables;
import world.bentobox.bentobox.api.user.User; import world.bentobox.bentobox.api.user.User;
import world.bentobox.bskyblock.BSkyBlock;
public class IslandCommand extends CompositeCommand { public class IslandCommand extends CompositeCommand {
@ -34,7 +34,6 @@ public class IslandCommand extends CompositeCommand {
setDescription("commands.island.help.description"); setDescription("commands.island.help.description");
setOnlyPlayer(true); setOnlyPlayer(true);
// Permission // Permission
setPermissionPrefix("bskyblock");
setPermission("island"); setPermission("island");
setWorld(((BSkyBlock)getAddon()).getIslandWorld()); setWorld(((BSkyBlock)getAddon()).getIslandWorld());
// Set up subcommands // Set up subcommands