From d82a3d266b91871f57f43e081e884c23c27d9789 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sun, 11 Oct 2020 09:18:03 -0400
Subject: [PATCH] custom slave for loop fixes

---
 src/markets/specificMarkets/customSlaveMarket.js | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/src/markets/specificMarkets/customSlaveMarket.js b/src/markets/specificMarkets/customSlaveMarket.js
index a3d8539bce5..d90915fd822 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;
-- 
GitLab