diff --git a/MCGalaxy/Commands/World/CmdResizeLvl.cs b/MCGalaxy/Commands/World/CmdResizeLvl.cs index 8706dc00d..56905f37b 100644 --- a/MCGalaxy/Commands/World/CmdResizeLvl.cs +++ b/MCGalaxy/Commands/World/CmdResizeLvl.cs @@ -104,6 +104,11 @@ namespace MCGalaxy.Commands.World { lock (lvl.saveLock) { lvl.Backup(true); + + // Make sure zones are kept + res.Zones = lvl.Zones; + lvl.Zones = new VolatileArray(false); + IMapExporter.Formats[0].Write(LevelInfo.MapPath(lvl.name), res); lvl.SaveChanges = false; }