diff --git a/src/endWeek/saDrugs.js b/src/endWeek/saDrugs.js
index cb34305c37447f0b7827d7b2bcab738cf3e5bbef..c6d122eefb3001caa7dda52d561410343ce0402f 100644
--- a/src/endWeek/saDrugs.js
+++ b/src/endWeek/saDrugs.js
@@ -454,38 +454,39 @@ window.saDrugs = (function saDrugs() {
 				}
 				break;
 			case "nipple enhancers":
+				let nippleChance = ((60 + (V.injectionUpgrade * 15)) / (1 + slave.geneMods.NCS));
 				r += ` ${He} receives <span class="lime">direct injections of enhancers right into ${his} nipples,</span> causing them to swell and expand`;
 				if (slave.geneMods.NCS === 1) {
-					r += `; ${his} <span class="orange">NCS</span> amplifies their effectiveness`;
+					r += `; ${his} <span class="orange">NCS</span> reduces their effectiveness`;
 				}
 				r += `.`;
 				switch (slave.nipples) {
 					case "inverted":
-						if ((slave.geneMods.NCS === 1) || (jsRandom(1, 100) > 60 + (V.injectionUpgrade * 15))) {
-							r += ` <span class="lime">${His} inverted nipples swell painfully,</span> and push their way outwards.`;
+						if (jsRandom(1, 100) > nippleChance) {
+							r += ` <span class="lime">${His} inverted nipples swell painfully,</span> pushing their way outwards.`;
 							slave.nipples = "partially inverted";
 						}
 						break;
 					case "partially inverted":
-						if ((slave.geneMods.NCS === 1) || (jsRandom(1, 100) > 60 + (V.injectionUpgrade * 15))) {
+						if (jsRandom(1, 100) > nippleChance) {
 							r += ` <span class="lime">${His} nipples swell painfully,</span> exposing ${His} previously inverted nipples.`;
 							slave.nipples = jsEither(["tiny", "cute", "puffy", "huge"]);
 						}
 						break;
 					case "tiny":
-						if ((slave.geneMods.NCS === 1) || (jsRandom(1, 100) > 60 + (V.injectionUpgrade * 15))) {
+						if (jsRandom(1, 100) > nippleChance) {
 							r += ` <span class="lime">${His} nipples swell painfully,</span> becoming larger and cute.`;
 							slave.nipples = "cute";
 						}
 						break;
 					case "cute":
-						if ((slave.geneMods.NCS === 1) || (jsRandom(1, 100) > 60 + (V.injectionUpgrade * 15))) {
+						if (jsRandom(1, 100) > nippleChance) {
 							r += ` <span class="lime">${His} nipples swell painfully,</span> becoming larger and puffy.`;
 							slave.nipples = "puffy";
 						}
 						break;
 					case "puffy":
-						if ((slave.geneMods.NCS === 1) || (jsRandom(1, 100) > 60 + (V.injectionUpgrade * 15))) {
+						if (jsRandom(1, 100) > nippleChance) {
 							r += ` <span class="lime">${His} nipples swell painfully,</span> becoming spectacularly immense.`;
 							slave.nipples = "huge";
 						}
@@ -495,7 +496,7 @@ window.saDrugs = (function saDrugs() {
 						slave.drugs = "no drugs";
 						break;
 					default:
-						r += ` With ${His} ${slave.nipples} nipples further injections have no effect; <span class="yellow">${his} drug regimen has been ended.</span>`;
+						r += ` The injections fail to affect ${his} ${slave.nipples} nipples; <span class="yellow">${his} drug regimen has been ended.</span>`;
 						slave.drugs = "no drugs";
 						break;
 				}
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 69621da9a2daab55e2ecdd8e8c9c03cda904546a..92a514128c5a1bb83d483443015c623cbbc2b85b 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -475,7 +475,7 @@
 			<<link "Situational">><<set $slaves[_i].rules.reward = "situational">><<replace "#standardReward">>$slaves[_i].rules.reward<</replace>><</link>>
 
 			/*
-			<<if ["work a glory hole", "work as a farmhand"].includes($activeSlave.assignment)>>
+			<<if ["be a servant", "get milked", "please you", "serve in the club", "serve in the master suite", "serve the public", "whore", "work as a farmhand", "work in the brothel", "work in the dairy", "work a glory hole"].includes($activeSlave.assignment)>>
 				<br>Sleep Rules: ''<span id="restRules">$slaves[_i].rules.rest</span>.''
 				<<link "None">><<set $slaves[_i].rules.rest = "none">><<replace "#restRules">>$slaves[_i].rules.rest<</replace>><</link>> |
 				<<link "Cruel">><<set $slaves[_i].rules.rest = "cruel">><<replace "#restRules">>$slaves[_i].rules.rest<</replace>><</link>> |