diff --git a/src/main/java/FormMapWithArmoredCars.java b/src/main/java/FormMapWithArmoredCars.java index fed8194..347aa79 100644 --- a/src/main/java/FormMapWithArmoredCars.java +++ b/src/main/java/FormMapWithArmoredCars.java @@ -262,7 +262,7 @@ public class FormMapWithArmoredCars extends JFrame{ fd.setVisible(true); String filename = fd.getFile(); if (filename != null) { - if (type.contains("Файл карты")) { + if (type.contains("Файл")) { if (_mapsCollection.SaveData(fd.getDirectory() + filename)) { JOptionPane.showMessageDialog(null, "Сохранение прошло успешно"); @@ -270,7 +270,7 @@ public class FormMapWithArmoredCars extends JFrame{ else { JOptionPane.showMessageDialog(null, "Не сохранилось"); } - } else if (type.contains("Файл объекта")){ + } else if (type.contains("Файл карты")){ if (_mapsCollection.SaveDataMap(fd.getDirectory() + filename, (String) listBoxMaps.getSelectedValue())) { JOptionPane.showMessageDialog(null, "Сохранение прошло успешно"); } else { @@ -286,7 +286,7 @@ public class FormMapWithArmoredCars extends JFrame{ fd.setVisible(true); String filename = fd.getFile(); if (filename != null) { - if (type.contains("Файл карты")) { + if (type.contains("Файл")) { if (_mapsCollection.LoadData(fd.getDirectory() + filename)) { JOptionPane.showMessageDialog(null, "Загрузка прошла успешно"); @@ -295,7 +295,7 @@ public class FormMapWithArmoredCars extends JFrame{ else { JOptionPane.showMessageDialog(null, "Не загрузилось"); } - } else if (type.contains("Файл объекта")){ + } else if (type.contains("Файл карты")){ if (_mapsCollection.LoadDataMap(fd.getDirectory() + filename)) { JOptionPane.showMessageDialog(null, "Загрузка прошла успешно"); ReloadMaps();