From c4f461225570a5b06834d33d65c7c6a5f0269c64 Mon Sep 17 00:00:00 2001
From: Anu <barrychahal@gmail.com>
Date: Sun, 2 Aug 2020 00:17:41 -0700
Subject: [PATCH] Update childInteract.tw

---
 src/facilities/nursery/childInteract.tw | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/facilities/nursery/childInteract.tw b/src/facilities/nursery/childInteract.tw
index fc2f6b751c4..e9cecbcf9af 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>>
-- 
GitLab