Updated to BentoBox 0.18.0 (Alpha 13)

This commit is contained in:
Florian CUNY 2018-12-22 18:01:32 +01:00
parent ceb1cfb358
commit f8cfec332a
3 changed files with 7 additions and 2 deletions

View File

@ -11,7 +11,7 @@
<name>BSkyBlock</name>
<description>BSkyBlock is an add-on for BentoBox, an expandable Minecraft Bukkit plugin for island-type games like SkyBlock or AcidIsland.</description>
<url>https://github.com/BentoBoxWorld/BSkyBlock</url>
<inceptionYear>2018</inceptionYear>
<inceptionYear>2017</inceptionYear>
<scm>
<connection>scm:git:https://github.com/BentoBoxWorld/BSkyBlock.git</connection>
@ -91,7 +91,7 @@
<dependency>
<groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId>
<version>0.12.0-SNAPSHOT</version>
<version>0.18.0</version>
<scope>provided</scope>
</dependency>
</dependencies>

View File

@ -14,6 +14,7 @@ import world.bentobox.bentobox.api.commands.admin.AdminTeleportCommand;
import world.bentobox.bentobox.api.commands.admin.AdminUnregisterCommand;
import world.bentobox.bentobox.api.commands.admin.AdminVersionCommand;
import world.bentobox.bentobox.api.commands.admin.AdminWhyCommand;
import world.bentobox.bentobox.api.commands.admin.deaths.AdminDeathsCommand;
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.team.AdminTeamAddCommand;
@ -63,6 +64,8 @@ public class AdminCommand extends CompositeCommand {
new AdminDeleteCommand(this);
// Why
new AdminWhyCommand(this);
new AdminDeathsCommand(this);
}
@Override

View File

@ -8,6 +8,7 @@ import world.bentobox.bentobox.api.commands.island.IslandBanCommand;
import world.bentobox.bentobox.api.commands.island.IslandBanlistCommand;
import world.bentobox.bentobox.api.commands.island.IslandCreateCommand;
import world.bentobox.bentobox.api.commands.island.IslandGoCommand;
import world.bentobox.bentobox.api.commands.island.IslandInfoCommand;
import world.bentobox.bentobox.api.commands.island.IslandLanguageCommand;
import world.bentobox.bentobox.api.commands.island.IslandResetCommand;
import world.bentobox.bentobox.api.commands.island.IslandResetnameCommand;
@ -38,6 +39,7 @@ public class IslandCommand extends CompositeCommand {
setWorld(((BSkyBlock)getAddon()).getIslandWorld());
// Set up subcommands
new IslandAboutCommand(this);
new IslandInfoCommand(this);
new IslandCreateCommand(this);
new IslandGoCommand(this);
new IslandResetCommand(this);