From d698f5fec81d21f85fc9197dd2993fe16866e41d Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sat, 10 Oct 2020 15:11:58 -0400 Subject: [PATCH] fixes --- src/markets/specificMarkets/customSlaveMarket.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/markets/specificMarkets/customSlaveMarket.js b/src/markets/specificMarkets/customSlaveMarket.js index ce3d44cc7cb..8d9877dbcc7 100644 --- a/src/markets/specificMarkets/customSlaveMarket.js +++ b/src/markets/specificMarkets/customSlaveMarket.js @@ -690,6 +690,8 @@ App.Markets["Custom Slave"] = function() { for (const [value, text] of choices) { if (slave.smells === Number(value)) { return `${text}.`; + } else { + return `Normal Sense of smell.`; } } } @@ -712,6 +714,8 @@ App.Markets["Custom Slave"] = function() { for (const [value, text] of choices) { if (slave.tastes === Number(value)) { return `${text}.`; + } else { + return `Normal Sense of taste.`; } } } -- GitLab