From 81aa959e13d103b75a627ef38a27d7d7d7809248 Mon Sep 17 00:00:00 2001 From: Ivan Mogilko Date: Sat, 8 Feb 2025 01:54:58 +0300 Subject: [PATCH] Editor: reworded a warning issued when files have been added or removed --- Editor/AGS.Editor/GUI/GUIController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Editor/AGS.Editor/GUI/GUIController.cs b/Editor/AGS.Editor/GUI/GUIController.cs index 33b46f89ea..44f2eef921 100644 --- a/Editor/AGS.Editor/GUI/GUIController.cs +++ b/Editor/AGS.Editor/GUI/GUIController.cs @@ -1709,7 +1709,7 @@ public bool QueryWhetherToSaveGameBeforeContinuing(string message) { if ((result == DialogResult.No) && (_agsEditor.CurrentGame.FilesAddedOrRemoved)) { - result = MessageBox.Show("Files have been added, removed or renamed. If you don't save the game now, you may not be able to successfully open this game next time. Do you want to save your changes?", "Save changes?", MessageBoxButtons.YesNo, MessageBoxIcon.Warning); + result = MessageBox.Show("Files have been added, removed or renamed within the game. If you don't save the game now, the project may become inconsistent and require manual fixing upon loading it next time. Do you want to save your changes?", "Save changes?", MessageBoxButtons.YesNo, MessageBoxIcon.Warning); } if (result == DialogResult.Yes)