From 2a39a0976c33217fade63446e5c05a3a3e52d045 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Wed, 16 Aug 2017 19:07:55 -0400 Subject: [PATCH] fixes --- src/pregmod/managePersonalAffairs.tw | 4 ++-- src/utility/miscWidgets.tw | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw index eacdfd34c13..accd6b4332b 100644 --- a/src/pregmod/managePersonalAffairs.tw +++ b/src/pregmod/managePersonalAffairs.tw @@ -528,9 +528,9 @@ In total, you have given birth to: [[Start taking birth control|Manage Personal Affairs][$PC.preg = -1, $PC.fertDrugs = 0]] <br> <<if $PC.fertDrugs == 1>> - You are currently taking fertility supplements.<<if $PC.forcedFertDrugs == 1>> You feel a strange eagerness whenever you think of bareback sex.<</if>> [[Stop taking fertility drugs|Manage Personal Affairs][$PC.fertDrugs = 0]] + You are currently taking fertility supplements.<<if $PC.forcedFertDrugs > 0>> You feel a strange eagerness whenever you think of bareback sex.<</if>> [[Stop taking fertility drugs|Manage Personal Affairs][$PC.fertDrugs = 0]] <<else>> - You are not on any fertility supplements.<<if $PC.forcedFertDrugs == 1>> You feel a strange eagerness whenever you think of bareback sex.<</if>> [[Start taking fertility drugs|Manage Personal Affairs][$PC.fertDrugs = 1]] + You are not on any fertility supplements.<<if $PC.forcedFertDrugs > 0>> You feel a strange eagerness whenever you think of bareback sex.<</if>> [[Start taking fertility drugs|Manage Personal Affairs][$PC.fertDrugs = 1]] <</if>> <</if>> diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw index 4006f2e7fa8..6f7f28c5024 100644 --- a/src/utility/miscWidgets.tw +++ b/src/utility/miscWidgets.tw @@ -2586,7 +2586,7 @@ Call as <<SlaveSort [$slaves]>> <<else>> <<set $args[0].pregType = either(1, 1, 1, 2, 2, 2, 2, 2, 2, 3)>> <</if>> - <<if $PC.forcedFertDrugs == 1>> + <<if $PC.forcedFertDrugs > 0>> <<set $args[0].pregType += either(1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4)>> <</if>> <<else>> @@ -2595,7 +2595,7 @@ Call as <<SlaveSort [$slaves]>> <<else>> <<set $args[0].pregType = either(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2)>> <</if>> - <<if $PC.forcedFertDrugs == 1>> + <<if $PC.forcedFertDrugs > 0>> <<set $args[0].pregType += either(0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 4)>> <</if>> <</if>> -- GitLab