From 397cee733e086ff4f57b013eb08a58949352f88e Mon Sep 17 00:00:00 2001 From: Gandalph Date: Mon, 9 Feb 2026 15:39:23 +0100 Subject: [PATCH] Fix interaction between Sky Lover and Elysium Miner Previously, Sky Lover did not apply the morale penalty to Elysium Miners. This is fixed with this commit. Sky Lover also does not impact the Quarry Worker, but I thought this was intended so it has not been changed. --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index a7f7ee0f6..9e869fc5c 100644 --- a/src/main.js +++ b/src/main.js @@ -3000,7 +3000,7 @@ function fastLoop(){ workers /= traits.high_pop.vars()[0]; } - if (global.race['sky_lover'] && ['miner','coal_miner','crystal_miner','pit_miner'].includes(job)){ + if (global.race['sky_lover'] && ['miner','coal_miner','crystal_miner','pit_miner','elysium_miner'].includes(job)){ workers *= 1 + (traits.sky_lover.vars()[0] / 100); }