diff options
Diffstat (limited to '')
-rw-r--r-- | src/main/java/net/tylermurphy/hideAndSeek/Main.java | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/Main.java b/src/main/java/net/tylermurphy/hideAndSeek/Main.java index b1e2a83..4646e57 100644 --- a/src/main/java/net/tylermurphy/hideAndSeek/Main.java +++ b/src/main/java/net/tylermurphy/hideAndSeek/Main.java @@ -21,6 +21,7 @@ package net.tylermurphy.hideAndSeek; import net.tylermurphy.hideAndSeek.command.*; import net.tylermurphy.hideAndSeek.command.map.*; +import net.tylermurphy.hideAndSeek.command.map.blockhunt.Enabled; import net.tylermurphy.hideAndSeek.command.map.set.*; import net.tylermurphy.hideAndSeek.configuration.*; import net.tylermurphy.hideAndSeek.database.Database; @@ -87,6 +88,14 @@ public class Main extends JavaPlugin implements Listener { new Start(), new Stop(), new CommandGroup("map", + new CommandGroup("blockhunt", + new CommandGroup("blocks", + new net.tylermurphy.hideAndSeek.command.map.blockhunt.blocks.Add(), + new net.tylermurphy.hideAndSeek.command.map.blockhunt.blocks.Remove(), + new net.tylermurphy.hideAndSeek.command.map.blockhunt.blocks.List() + ), + new Enabled() + ), new CommandGroup("set", new Lobby(), new Spawn(), @@ -99,7 +108,8 @@ public class Main extends JavaPlugin implements Listener { new List(), new Status(), new Save(), - new Debug() + new Debug(), + new GoTo() ), new SetExitLocation(), new Top(), |