Skip to content

Commit

Permalink
edit autosave dialog text
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed Jan 21, 2025
1 parent 38b3b0f commit 82ea795
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/notify/notifications.lua
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,8 @@ NOTIFICATIONS_BY_IDX = {
end,
on_click=function()
local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60
local message = 'It has been ' .. dfhack.formatInt(minsSinceSave) .. ' minutes since your last save. \n\nWould you like to save now? ' ..
'(Note: You can also close this reminder and save manually)'
local message = 'It has been ' .. dfhack.formatInt(minsSinceSave) .. ' minutes since your last save. \n\nWould you like to save now?\n\n' ..
'You can also close this reminder and save manually.'
dlg.showYesNoPrompt('Save now?', message, nil, function() dfhack.run_script('quicksave') end)
end,
},
Expand Down

0 comments on commit 82ea795

Please sign in to comment.