diff --git a/KuruLevelEditor/KuruLevelEditor/CustomInventories.cs b/KuruLevelEditor/KuruLevelEditor/CustomInventories.cs index fbaff00..34a2f2b 100644 --- a/KuruLevelEditor/KuruLevelEditor/CustomInventories.cs +++ b/KuruLevelEditor/KuruLevelEditor/CustomInventories.cs @@ -75,8 +75,11 @@ public void Save() SaveGrid(pathP, grids[Levels.MapType.Physical].Grid); string pathG = Path.Combine(dir, "graphical.txt"); SaveGrid(pathG, grids[Levels.MapType.Graphical].Grid); - string pathG2 = Path.Combine(dir, "graphical2.txt"); - SaveGrid(pathG2, grids[Levels.MapType.Graphical2].Grid); + if (Settings.Paradise) + { + string pathG2 = Path.Combine(dir, "graphical2.txt"); + SaveGrid(pathG2, grids[Levels.MapType.Graphical2].Grid); + } string pathB = Path.Combine(dir, "background.txt"); SaveGrid(pathB, grids[Levels.MapType.Background].Grid); string pathM = Path.Combine(dir, "minimap.txt");