From 654a8768053b109681da3a677ee24b52635e0e15 Mon Sep 17 00:00:00 2001 From: tastybento Date: Sat, 4 May 2019 22:05:17 -0700 Subject: [PATCH] Add island near command --- .../java/world/bentobox/bskyblock/commands/IslandCommand.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/world/bentobox/bskyblock/commands/IslandCommand.java b/src/main/java/world/bentobox/bskyblock/commands/IslandCommand.java index 5eda89c..ae4d5ec 100644 --- a/src/main/java/world/bentobox/bskyblock/commands/IslandCommand.java +++ b/src/main/java/world/bentobox/bskyblock/commands/IslandCommand.java @@ -11,6 +11,7 @@ import world.bentobox.bentobox.api.commands.island.IslandExpelCommand; 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.IslandNearCommand; import world.bentobox.bentobox.api.commands.island.IslandResetCommand; import world.bentobox.bentobox.api.commands.island.IslandResetnameCommand; import world.bentobox.bentobox.api.commands.island.IslandSethomeCommand; @@ -56,6 +57,7 @@ public class IslandCommand extends CompositeCommand { new IslandUnbanCommand(this); new IslandBanlistCommand(this); new IslandExpelCommand(this); + new IslandNearCommand(this); // Team commands new IslandTeamCommand(this); }