From 93a37f7560822244b716e4200d7819d595bb6637 Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Sat, 2 Jun 2018 16:48:53 -0700 Subject: [PATCH] Change default OS map height to 128 --- MCGalaxy/Commands/World/CmdOverseer.SubCommands.cs | 4 ++-- MCGalaxy/Commands/World/CmdOverseer.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MCGalaxy/Commands/World/CmdOverseer.SubCommands.cs b/MCGalaxy/Commands/World/CmdOverseer.SubCommands.cs index b40123df4..85cf44575 100644 --- a/MCGalaxy/Commands/World/CmdOverseer.SubCommands.cs +++ b/MCGalaxy/Commands/World/CmdOverseer.SubCommands.cs @@ -158,8 +158,8 @@ namespace MCGalaxy.Commands.World { string level = NextLevel(p); if (level == null) return; - if (value.Length == 0) value = "128 64 128 flat"; - else if (value.IndexOf(' ') == -1) value = "128 64 128 " + value; + if (value.Length == 0) value = "128 128 128 flat"; + else if (value.IndexOf(' ') == -1) value = "128 128 128 " + value; string[] args = value.TrimEnd().SplitSpaces(); if (args.Length == 3) value += " flat"; diff --git a/MCGalaxy/Commands/World/CmdOverseer.cs b/MCGalaxy/Commands/World/CmdOverseer.cs index 71e7f5433..3f9d4d79d 100644 --- a/MCGalaxy/Commands/World/CmdOverseer.cs +++ b/MCGalaxy/Commands/World/CmdOverseer.cs @@ -162,7 +162,7 @@ namespace MCGalaxy.Commands.World { }; static string[] mapHelp = new string[] { - "%T/os map add [type - default is flat] %H- Creates your map (128x64x128)", + "%T/os map add [type - default is flat] %H- Creates your map (128x128x128)", "%T/os map add [width] [height] [length] [type]", "%H See %T/Help newlvl types %Hfor a list of map types.", "%T/os map physics [level] %H- Sets the physics on your map.",