Skip to content

Commit

Permalink
Version 1.4.1
Browse files Browse the repository at this point in the history
Adds expel command
  • Loading branch information
tastybento committed Apr 1, 2019
1 parent af638cc commit 2de0c6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>world.bentobox</groupId>
<artifactId>skygrid</artifactId>
<version>1.4.0</version>
<version>1.4.1</version>

<description>Skygrid is an add-on for BentoBox, an expandable Minecraft Bukkit plugin for island-type games like BSkyBlock or AcidIsland.</description>
<url>https://github.com/BentoBoxWorld/SkyGrid</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import world.bentobox.bentobox.api.commands.CompositeCommand;
import world.bentobox.bentobox.api.commands.island.IslandBanCommand;
import world.bentobox.bentobox.api.commands.island.IslandBanlistCommand;
import world.bentobox.bentobox.api.commands.island.IslandExpelCommand;
import world.bentobox.bentobox.api.commands.island.IslandInfoCommand;
import world.bentobox.bentobox.api.commands.island.IslandLanguageCommand;
import world.bentobox.bentobox.api.commands.island.IslandResetnameCommand;
Expand All @@ -25,8 +26,8 @@ public class SkyGridCommand extends CompositeCommand {

public SkyGridCommand(SkyGrid addon) {
super(addon,
addon.getSettings().getIslandCommand().split(" ")[0],
addon.getSettings().getIslandCommand().split(" "));
addon.getSettings().getIslandCommand().split(" ")[0],
addon.getSettings().getIslandCommand().split(" "));
}

/* (non-Javadoc)
Expand All @@ -50,6 +51,7 @@ public void setup() {
new IslandUnbanCommand(this);
new IslandBanlistCommand(this);
new IslandSpawnCommand(this);
new IslandExpelCommand(this);
// Team commands
new IslandTeamCommand(this);
// SkyGrid sub commands
Expand Down

0 comments on commit 2de0c6d

Please sign in to comment.