From ef5c33c4b66269f2a0c8879cd62362a4d2b3616f Mon Sep 17 00:00:00 2001 From: CondoSlime Date: Wed, 29 Oct 2025 23:06:32 +0100 Subject: [PATCH] Fix for smoldering + fasting Heat races had to pay chrysotile for bone tools which is unobtainable until bone tools. --- src/tech.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tech.js b/src/tech.js index e947dba7b..1376817a9 100644 --- a/src/tech.js +++ b/src/tech.js @@ -48,8 +48,8 @@ const techs = { return global.race['soul_eater'] && !global.race['evil'] ? false : true; }, cost: { - Food(){ return global.race['evil'] && !global.race['smoldering'] || global.race['fasting'] ? 0 : 10; }, - Lumber(){ return global.race['evil'] && !global.race['smoldering'] || global.race['fasting'] ? 10 : 0; } + Food(){ return (global.race['evil'] && !global.race['smoldering']) || global.race['fasting'] ? 0 : 10; }, + Lumber(){ return global.race['evil'] && !global.race['smoldering'] && !global.race['fasting'] ? 10 : 0; } }, action(){ if (payCosts($(this)[0])){