From 31d39222961116ba4a41eb17be6ce78252e6b08c Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Sat, 30 Sep 2023 23:41:33 +0200 Subject: [PATCH] Add line to warning messages that explains that their changes are not saved. --- Glamourer/Designs/DesignBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Glamourer/Designs/DesignBase.cs b/Glamourer/Designs/DesignBase.cs index 258c765..5635286 100644 --- a/Glamourer/Designs/DesignBase.cs +++ b/Glamourer/Designs/DesignBase.cs @@ -356,7 +356,7 @@ public class DesignBase void PrintWarning(string msg) { if (msg.Length > 0) - Glamourer.Chat.NotificationMessage($"{msg} ({name})", "Warning", NotificationType.Warning); + Glamourer.Chat.NotificationMessage($"{msg} ({name})\n\nThis change is not saved automatically. If you want this replacement to stick and the warning to stop appearing, please save the design manually once by changing something in it.", "Warning", NotificationType.Warning); } var wetness = QuadBool.FromJObject(json["Wetness"], "Value", "Apply", QuadBool.NullFalse);