diff --git a/src/endWeek/saWorkTheFarm.js b/src/endWeek/saWorkTheFarm.js
index 496c60bc791673c996ebf76e809faad31708746d..72ddd62738ec3a41e3fc776689e3fef2bb90727f 100644
--- a/src/endWeek/saWorkTheFarm.js
+++ b/src/endWeek/saWorkTheFarm.js
@@ -11,10 +11,10 @@ App.SlaveAssignment.workTheFarm = function(slave) {
 		{ he, him, his, He, His } = getPronouns(slave),
 		incomeStats = getSlaveStatisticData(slave, V.facility.farmyard),
 
-		slaveApproves = () => sexualQuirks.includes(slave.sexualQuirk) || behavorialQuirks.includes(slave.behavioralQuirk) || fetishes.includes(slave.fetish),
+		slaveApproves = () => sexualQuirks.includes(slave.sexualQuirk) || behavioralQuirks.includes(slave.behavioralQuirk) || fetishes.includes(slave.fetish),
 
 		sexualQuirks = ["perverted", "unflinching"],
-		behavorialQuirks = ["sinful"],
+		behavioralQuirks = ["sinful"],
 		fetishes = ["humiliation", "masochist"],
 
 		foodAmount = Math.trunc(App.Facilities.Farmyard.foodAmount(slave));
diff --git a/src/facilities/farmyard/shows/saFarmyardShows.js b/src/facilities/farmyard/shows/saFarmyardShows.js
index 7efaf5cb0bd6789d29a64535b1c22fb6f909fdba..f871fd325b800bd9ec6580ce1237443050279a30 100644
--- a/src/facilities/farmyard/shows/saFarmyardShows.js
+++ b/src/facilities/farmyard/shows/saFarmyardShows.js
@@ -362,7 +362,7 @@ App.Facilities.Farmyard.putOnShows = function(slave) {
 	} else if (slave.energy > 20) {
 		r.push(`The fact that ${his} sex drive is so poor affects ${his} performance.`);
 	} else {
-		r.push(`The fact that ${his} sex drive is nonexistant really hinders ${his} ability to put on a decent show.`);
+		r.push(`The fact that ${his} sex drive is nonexistent really hinders ${his} ability to put on a decent show.`);
 	}
 
 	// TODO: add more to the fetishes and flaws / quirks
diff --git a/src/interaction/rename.js b/src/interaction/rename.js
index 6ab4159094f9abf46a2b9b1626eb4897e71e27be..c852ef4feb9d553cb105f6a7a60f7e76823d2799 100644
--- a/src/interaction/rename.js
+++ b/src/interaction/rename.js
@@ -1,12 +1,12 @@
 /**
  * @param {App.Entity.SlaveState} slave
- * @param {*} params
+ * @param {object} params
  * @param {string} [params.oldName] Their name before you renamed them by calling this function
  * @param {string} [params.oldSurname] Their surname before you renamed them by calling this function
  */
 App.UI.SlaveInteract.rename = function(slave, {oldName = "", oldSurname = ""} = {}) {
 	const r = [];
-	const {He, he, His, his, him, girl} = getPronouns(slave);
+	const {He, he, His, his, him, girl, himself, wife} = getPronouns(slave);
 	if (slave.slaveName === oldName && slave.slaveSurname === oldSurname) {
 		return;
 	} else {