diff --git a/src/personalAssistant/assistant.js b/src/personalAssistant/assistant.js
index 2d1d7e269b58ec5ca411ad4d8864cd1318716d1b..dbe3c99bd22e76149e0f99a79114e2dd7a5f4d3a 100644
--- a/src/personalAssistant/assistant.js
+++ b/src/personalAssistant/assistant.js
@@ -48,9 +48,9 @@ window.assistant = (function() {
 	}
 
 	function pronouns() {
-		let o = {}
+		let o = {};
 		if (V.assistant.personality === 0 || V.assistant.appearance === "normal") {
-			o.main = {pronoun: App.Data.Pronouns.Kind.ai};
+			o.main = o.market = {pronoun: App.Data.Pronouns.Kind.ai};
 		} else {
 			if (V.assistant.appearance === "incubus" && V.diversePronouns > 0) {
 				o.main = {pronoun: App.Data.Pronouns.Kind.male};
@@ -87,4 +87,4 @@ window.assistant = (function() {
 			delete V.assistant.options;
 		}
 	}
-})();
\ No newline at end of file
+})();