From 4112c9a22a2018d17c5eac7f638505aae20dcfd0 Mon Sep 17 00:00:00 2001 From: Anu <barrychahal@gmail.com> Date: Wed, 14 Oct 2020 16:51:43 -0700 Subject: [PATCH] Reword mGain and wGain costs report --- src/js/economyJS.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/economyJS.js b/src/js/economyJS.js index 58eb1708afb..9f5186ba583 100644 --- a/src/js/economyJS.js +++ b/src/js/economyJS.js @@ -1077,14 +1077,14 @@ globalThis.getSlaveCostArray = function(s) { } if (s.geneticQuirks.mGain === 2 && s.geneticQuirks.mLoss !== 2) { if (V.geneticMappingUpgrade >= 1) { - retval.push({text: "Additional dietary supplements due to muscle loss", value: Math.trunc(foodCost * 0.2)}); + retval.push({text: "Additional dietary supplements due to myotonic hypertrophy", value: Math.trunc(foodCost * 0.2)}); } else { retval.push({text: "Adjustment for unusual dietary deficiencies", value: Math.trunc(foodCost * 0.2)}); } } if (s.geneticQuirks.wGain === 2 && s.geneticQuirks.wLoss !== 2) { if (V.geneticMappingUpgrade >= 1) { - retval.push({text: "Additional dietary supplements due to weight loss", value: Math.trunc(foodCost * 0.2)}); + retval.push({text: "Additional dietary supplements due to hyperleptinemia", value: Math.trunc(foodCost * 0.2)}); } else { retval.push({text: "Adjustment for unusual dietary deficiencies", value: Math.trunc(foodCost * 0.2)}); } -- GitLab