diff --git a/src/markets/specificMarkets/customSlaveMarket.js b/src/markets/specificMarkets/customSlaveMarket.js index a3d8539bce51da6a5077f84e6577efab39277d82..d90915fd8222617b77dfc4496be571afb49035ab 100644 --- a/src/markets/specificMarkets/customSlaveMarket.js +++ b/src/markets/specificMarkets/customSlaveMarket.js @@ -205,10 +205,9 @@ App.Markets["Custom Slave"] = function() { } else { return `${text} voice. `; } - } else { - return `Voice is unimportant. `; } } + return `Voice is unimportant. `; } return el; @@ -860,10 +859,9 @@ App.Markets["Custom Slave"] = function() { for (const [value, text] of choices) { if (slave.smells === Number(value)) { return `${text}.`; - } else { - return `Normal Sense of smell. `; } } + return `Normal Sense of smell. `; } return el; @@ -884,10 +882,9 @@ App.Markets["Custom Slave"] = function() { for (const [value, text] of choices) { if (slave.tastes === Number(value)) { return `${text}.`; - } else { - return `Normal Sense of taste. `; } } + return `Normal Sense of taste. `; } return el;