diff --git a/src/facilities/nursery/childInteract.tw b/src/facilities/nursery/childInteract.tw
index fc2f6b751c4383b2a52b05fef32d42c4ce69633b..e9cecbcf9af702aa8230b7a3e43fcf69f923fe47 100644
--- a/src/facilities/nursery/childInteract.tw
+++ b/src/facilities/nursery/childInteract.tw
@@ -1288,14 +1288,14 @@ Hormones: <b><span id="hormones">$activeChild.hormones</span>.</b>
 		<</link>>
 	<</if>>
 <</if>>
-<<if ($activeChild.muscles <= 95) && !isAmputee($activeChild)>>
+<<if ($activeChild.muscles < 100) && !isAmputee($activeChild)>>
 |	<<link "Build muscle">><<set $activeChild.diet = "muscle building">><<replace "#diet">>$activeChild.diet<</replace>><</link>>
-<<elseif $activeChild.muscles > 95 && !isAmputee($activeChild)>>
+<<elseif $activeChild.muscles >= 100 && !isAmputee($activeChild)>>
 	| //$He is maintaining $his enormous musculature//
 <<else>>
 	| //$He has no limbs and thus can't effectively build muscle//
 <</if>>
-<<if $activeChild.muscles > 5 && canWalk($activeChild)>>
+<<if $activeChild.muscles > 0 && canWalk($activeChild)>>
 |	<<link "Slim down">>
 		<<set $activeChild.diet = "slimming">>
 		<<replace "#diet">>$activeChild.diet<</replace>>