From 14a3988b898a1c4185d7fe5d4612d4df697f391d Mon Sep 17 00:00:00 2001 From: DCoded <dcoded@live.com> Date: Sun, 7 Oct 2018 09:52:47 -0400 Subject: [PATCH] Fixes --- src/uncategorized/slaveInteract.tw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 68d0035f231..5edc2421b85 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -1204,7 +1204,7 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 <<else>> All $activeSlave.reservedChildren of $his children will be placed in $incubatorName. <</if>> - <<if (($activeSlave.reservedChildren + $activeSlave.reservedChildrenNursery < $activeSlave.pregType) && ($reservedChildren < $freeTanks)) || ($activeSlave.reservedChildren > 0)>> + <<if ($activeSlave.reservedChildren + $activeSlave.reservedChildrenNursery < $activeSlave.pregType) && ($reservedChildren < $freeTanks)>> <<link "Keep another child" "Slave Interact">><<set $activeSlave.reservedChildren += 1, $reservedChildren += 1>><</link>> <<if $activeSlave.reservedChildren > 0>> | <<link "Keep one less child" "Slave Interact">><<set $activeSlave.reservedChildren -= 1, $reservedChildren -= 1>><</link>> @@ -1255,7 +1255,7 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 <<else>> All $activeSlave.reservedChildrenNursery of $his children will be placed in $nurseryName. <</if>> - <<if (($activeSlave.reservedChildren + $activeSlave.reservedChildrenNursery < $activeSlave.pregType) && ($reservedChildrenNursery < $freeCribs)) || ($activeSlave.reservedChildrenNursery > 0)>> + <<if (($activeSlave.reservedChildren + $activeSlave.reservedChildrenNursery < $activeSlave.pregType) && ($reservedChildrenNursery < $freeCribs))>> <<link "Keep another child" "Slave Interact">><<set $activeSlave.reservedChildrenNursery += 1, $reservedChildrenNursery += 1>><</link>> <<if $activeSlave.reservedChildrenNursery > 0>> | <<link "Keep one less child" "Slave Interact">><<set $activeSlave.reservedChildrenNursery -= 1, $reservedChildrenNursery -= 1>><</link>> -- GitLab