From 989b3fc65c7e070ccff767037573554a1a26f761 Mon Sep 17 00:00:00 2001 From: BONNe Date: Thu, 28 Mar 2019 23:37:16 +0200 Subject: [PATCH] Add IslandExpelCommand. --- .../java/world/bentobox/caveblock/commands/IslandCommand.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/world/bentobox/caveblock/commands/IslandCommand.java b/src/main/java/world/bentobox/caveblock/commands/IslandCommand.java index df73586..91e95e4 100644 --- a/src/main/java/world/bentobox/caveblock/commands/IslandCommand.java +++ b/src/main/java/world/bentobox/caveblock/commands/IslandCommand.java @@ -44,6 +44,10 @@ public class IslandCommand extends CompositeCommand { new IslandBanCommand(this); new IslandUnbanCommand(this); new IslandBanlistCommand(this); + + // Expel command + new IslandExpelCommand(this); + // Team commands new IslandTeamCommand(this); }