From c4e59156c81f74e9d96af0900694260c92ce9e7a Mon Sep 17 00:00:00 2001 From: David Vogel Date: Thu, 28 Jul 2022 13:29:10 +0200 Subject: [PATCH] Make more clear that force closing noita can corrupt saves --- files/message.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/message.lua b/files/message.lua index db4fdcd..a876bf8 100644 --- a/files/message.lua +++ b/files/message.lua @@ -56,7 +56,7 @@ function Message:ShowResetNoitaSettings() "Press the following button to reset the settings and close Noita automatically:", }, Actions = { - { Name = "Reset and close", Hint = nil, HintDesc = nil, Callback = function() Modification:Reset() end }, + { Name = "Reset and close (May corrupt current save!)", Hint = nil, HintDesc = nil, Callback = function() Modification:Reset() end }, }, } end @@ -76,11 +76,11 @@ function Message:ShowSetNoitaSettings(callback, desc) "Press the button at the bottom to set up and close Noita automatically.", "Alternatively disable `Use custom resolution` in the mod settings.", " ", - "You can always reset these settings by right clicking the `start capture`", + "You can always reset any custom settings by right clicking the `start capture`", "button at the top left.", }, Actions = { - { Name = "Setup and close", Hint = nil, HintDesc = nil, Callback = callback }, + { Name = "Setup and close (May corrupt current save!)", Hint = nil, HintDesc = nil, Callback = callback }, }, } end