diff options
-rw-r--r-- | OG_GUIDE.md (renamed from og-guide.md) | 2 | ||||
-rw-r--r-- | src/main/java/com/MylesAndMore/Tumble/Main.java | 1 | ||||
-rw-r--r-- | src/main/java/com/MylesAndMore/Tumble/game/Game.java | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/og-guide.md b/OG_GUIDE.md index 22c6c54..bd041e0 100644 --- a/og-guide.md +++ b/OG_GUIDE.md @@ -20,7 +20,7 @@ A huge thanks to *Catmanjoe* for porting these worlds! This game would not be th 4. Set your lobby spawn by going to the location and running `/tumble-config set lobbySpawn`. In the 2017 console lobby this is at `-341.5 58 -340.5` 5. If you want to have a separate lobby spawn for the winner, set it with `/tumble-config set winnerLobbySpawn`. In the 2017 console lobby this is at `-362.5 76 -340.5` 6. Import your arena world into Multiverse. You can do this by running the command `/mv import <your-world-name> normal` -7. Teleport to the arena world. Use `/mvtp <your-game world>`. +7. Teleport to the arena world. Use `/mvtp <your-world-name>`. 8. Now you can create the arena! Do this by going to the spawn location and running `/tumble-config add <arena-name>`. In the console arena this is at `0 60 0` 9. Repeat steps 4, 5 and 6 for each arena 10. Join the game by using `/tumble-join <arena-name> Mixed`(or whichever game mode you want). diff --git a/src/main/java/com/MylesAndMore/Tumble/Main.java b/src/main/java/com/MylesAndMore/Tumble/Main.java index 8221973..274765e 100644 --- a/src/main/java/com/MylesAndMore/Tumble/Main.java +++ b/src/main/java/com/MylesAndMore/Tumble/Main.java @@ -24,7 +24,6 @@ public class Main extends JavaPlugin{ Objects.requireNonNull(this.getCommand("tumble-leave")).setExecutor(new Leave()); Objects.requireNonNull(this.getCommand("tumble-forcestop")).setExecutor(new ForceStop()); new Metrics(this, 16940); - // TODO: change command format this.saveDefaultConfig(); // Saves the default config file (packaged in the JAR) if we haven't already ConfigManager.readConfig(); diff --git a/src/main/java/com/MylesAndMore/Tumble/game/Game.java b/src/main/java/com/MylesAndMore/Tumble/game/Game.java index c8244d9..c530489 100644 --- a/src/main/java/com/MylesAndMore/Tumble/game/Game.java +++ b/src/main/java/com/MylesAndMore/Tumble/game/Game.java @@ -60,7 +60,6 @@ public class Game { eventListener = new EventListener(this); Bukkit.getServer().getPluginManager().registerEvents(eventListener, plugin); - // clear area in case it did not get properly cleared roundStart(); } |