diff --git a/src/js/DefaultRules.js b/src/js/DefaultRules.js
index 3e11412a68bfd29d98f0a2bf182f4b16dc55ce14..c7d5b15a7ea7e794ec11ac578e76a311c2998ecb 100644
--- a/src/js/DefaultRules.js
+++ b/src/js/DefaultRules.js
@@ -1650,14 +1650,14 @@ window.DefaultRules = (function() {
 					}
 				}
 			}
-		}
 
-		if (slave.drugs === "appetite suppressors" && slave.diet !== "restricted") {
-			slave.drugs = "no drugs";
-			r += `<br>${slave.slaveName} no longer needs to lose weight, so ${he}'s no longer being given appetite suppressors.`;
-		} else if (slave.diet === "restricted" && V.arcologies[0].FSSlimnessEnthusiastResearch === 1 && (slave.drugs === "no drugs" || slave.drugs === "none")) {
-			slave.drugs = "appetite suppressors";
-			r += `<br>${slave.slaveName} needs to lose weight so ${he} will be given weight loss pills.`;
+			if (slave.drugs === "appetite suppressors" && slave.diet !== "restricted") {
+				slave.drugs = "no drugs";
+				r += `<br>${slave.slaveName} no longer needs to lose weight, so ${he}'s no longer being given appetite suppressors.`;
+			} else if (slave.diet === "restricted" && V.arcologies[0].FSSlimnessEnthusiastResearch === 1 && (slave.drugs === "no drugs" || slave.drugs === "none")) {
+				slave.drugs = "appetite suppressors";
+				r += `<br>${slave.slaveName} needs to lose weight so ${he} will be given weight loss pills.`;
+			}
 		}
 	}