From dbe79480fd048751335ab2e52257f683aa541c52 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Mon, 27 Nov 2023 09:18:45 -0800 Subject: [PATCH] reduce frequency of warn-stranded check --- changelog.txt | 1 + gui/control-panel.lua | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 57a4eaca74..ce9ac65c9e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -33,6 +33,7 @@ Template for new versions: ## Fixes ## Misc Improvements +- `gui/control-panel`: reduce frequency for `warn-stranded` check to once every 2 days ## Removed diff --git a/gui/control-panel.lua b/gui/control-panel.lua index e92b004a84..d90c617c7b 100644 --- a/gui/control-panel.lua +++ b/gui/control-panel.lua @@ -140,7 +140,7 @@ local REPEATS = { command={'--time', '10', '--timeUnits', 'days', '--command', '[', 'warn-starving', ']'}}, ['warn-stranded']={ desc='Show a warning dialog when units are stranded from all others.', - command={'--time', '0.25', '--timeUnits', 'days', '--command', '[', 'warn-stranded', ']'}}, + command={'--time', '2', '--timeUnits', 'days', '--command', '[', 'warn-stranded', ']'}}, } local REPEATS_LIST = {} for k in pairs(REPEATS) do