From e06429f3b08737962dd8a1dffd509b2a4a92eaec Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Fri, 1 May 2020 19:18:11 +0100 Subject: [PATCH] Correct world types given to player --- .../src/main/java/com/plotsquared/core/command/Setup.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Setup.java b/Core/src/main/java/com/plotsquared/core/command/Setup.java index 9799a558d..947a3221f 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Setup.java +++ b/Core/src/main/java/com/plotsquared/core/command/Setup.java @@ -135,10 +135,10 @@ public class Setup extends SubCommand { } object.setupGenerator = args[0]; object.current++; - String partial = "\n&8 - &7PARTIAL&8 - &7Vanilla with clusters of plots"; - MainUtil.sendMessage(player, - "&6What world type do you want?\n&8 - &2DEFAULT&8 - &7Standard plot generation" - + "\n&8 - &7AUGMENTED&8 - &7Plot generation with terrain" + partial); + MainUtil.sendMessage(player, "&6What world type do you want?" + + "\n&8 - &2normal&8 - &7Standard plot generation" + + "\n&8 - &7augmented&8 - &7Plot generation with terrain" + + "\n&8 - &7partial&8 - &7Vanilla with clusters of plots"); break; case 1: // choose world type List allTypes = Arrays.asList("normal", "augmented", "partial");