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.",