diff --git a/MCGalaxy/Commands/World/CmdResizeLvl.cs b/MCGalaxy/Commands/World/CmdResizeLvl.cs index 84b7df3bd..ada26df57 100644 --- a/MCGalaxy/Commands/World/CmdResizeLvl.cs +++ b/MCGalaxy/Commands/World/CmdResizeLvl.cs @@ -56,6 +56,7 @@ namespace MCGalaxy.Commands.World { } Level newLvl = ResizeLevel(lvl, x, y, z); + if (newLvl == null) { Player.Message(p, "&cError resizing map."); return false; } LevelActions.Replace(lvl, newLvl); return true; }