diff --git a/src/markets/specificMarkets/customSlaveMarket.js b/src/markets/specificMarkets/customSlaveMarket.js index ce3d44cc7cb2e6fd9c54d4b250ca1ee7c9ed981e..8d9877dbcc74aff83971cc7de6fef833f501c14c 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.`; } } }