From 5f3c4024b84b323e1edf50a79084c7061f665e4e Mon Sep 17 00:00:00 2001 From: Nicholas McDaniel Date: Fri, 22 Nov 2024 10:37:07 -0500 Subject: [PATCH 1/3] Add infiniteSky to control-panel registry --- internal/control-panel/registry.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/control-panel/registry.lua b/internal/control-panel/registry.lua index 548057b32..888b2bc5c 100644 --- a/internal/control-panel/registry.lua +++ b/internal/control-panel/registry.lua @@ -49,6 +49,8 @@ COMMANDS_BY_IDX = { desc='Go to the Standing Orders tab in the Labor screen to save your current settings.'}, {command='gui/settings-manager load-work-details', group='automation', mode='run', desc='Go to the Work Details tab in the Labor screen to save your current definitions.'}, + {command='infiniteSky', group='automation', mode='enable', + desc='Enable if you want automatic creation of new sky z-levels.'}, {command='logistics enable autoretrain', group='automation', mode='run', desc='Automatically assign trainers to partially trained livestock so they don\'t revert to wild.'}, {command='nestboxes', group='automation', mode='enable'}, From 50e438e22941e4e9bbae2091d5f59b933ee7a21b Mon Sep 17 00:00:00 2001 From: Nicholas McDaniel Date: Sat, 23 Nov 2024 08:58:17 -0500 Subject: [PATCH 2/3] Adjust to renaming of infiniteSky to infinite-sky --- internal/control-panel/registry.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/control-panel/registry.lua b/internal/control-panel/registry.lua index 888b2bc5c..61d9763f2 100644 --- a/internal/control-panel/registry.lua +++ b/internal/control-panel/registry.lua @@ -49,7 +49,7 @@ COMMANDS_BY_IDX = { desc='Go to the Standing Orders tab in the Labor screen to save your current settings.'}, {command='gui/settings-manager load-work-details', group='automation', mode='run', desc='Go to the Work Details tab in the Labor screen to save your current definitions.'}, - {command='infiniteSky', group='automation', mode='enable', + {command='infinite-sky', group='automation', mode='enable', desc='Enable if you want automatic creation of new sky z-levels.'}, {command='logistics enable autoretrain', group='automation', mode='run', desc='Automatically assign trainers to partially trained livestock so they don\'t revert to wild.'}, From ebf37dfe62d994598d11d9368919877a52f11f4c Mon Sep 17 00:00:00 2001 From: Nicholas McDaniel Date: Thu, 28 Nov 2024 11:13:33 -0500 Subject: [PATCH 3/3] Remove uneccessary description --- internal/control-panel/registry.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/control-panel/registry.lua b/internal/control-panel/registry.lua index 61d9763f2..c162e580b 100644 --- a/internal/control-panel/registry.lua +++ b/internal/control-panel/registry.lua @@ -49,8 +49,7 @@ COMMANDS_BY_IDX = { desc='Go to the Standing Orders tab in the Labor screen to save your current settings.'}, {command='gui/settings-manager load-work-details', group='automation', mode='run', desc='Go to the Work Details tab in the Labor screen to save your current definitions.'}, - {command='infinite-sky', group='automation', mode='enable', - desc='Enable if you want automatic creation of new sky z-levels.'}, + {command='infinite-sky', group='automation', mode='enable'}, {command='logistics enable autoretrain', group='automation', mode='run', desc='Automatically assign trainers to partially trained livestock so they don\'t revert to wild.'}, {command='nestboxes', group='automation', mode='enable'},