From 1b92a1ce2546b1efac3c1f6e14fbc63a4e08367e Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Mon, 24 Sep 2018 00:14:54 -0400 Subject: [PATCH] fixes --- devNotes/VersionChangeLog-Premod+LoliMod.txt | 7 +++++++ devNotes/twine JS.txt | 4 ++++ src/uncategorized/saLongTermEffects.tw | 8 ++++---- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index 0ab18a40721..8f0fd980448 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -2,6 +2,13 @@ 0.10.7.1-0.7.x +9/24/2018 + + 41 + -fixes + -more deepmurk tinkerings + -klan robes + 9/23/2018 40 diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 6031fa835d4..f275a36d00c 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -15772,6 +15772,7 @@ window.rulesAssistantOptions = (function() { ["Hijab and abaya", "a hijab and abaya"], ["Hijab and blouse", "a hijab and blouse"], ["Kitty lingerie", "kitty lingerie"], + ["Klan robes", "klan robes"], ["Latex catsuit", "a latex catsuit"], ["Lederhosen", "lederhosen"], ["Leotard", "a leotard"], @@ -23542,6 +23543,9 @@ window.SlaveSummaryUncached = (function(){ case "a niqab and abaya": r += `Niqab and abaya.`; break; + case "klan robes": + r += `Klan robes.`; + break; case "a hijab and blouse": r += `Hijab and blouse.`; break; diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index d739d594218..9d965fdb8fc 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -8098,7 +8098,7 @@ <<if $dangerousPregancy != 0>> <<if ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && $slaves[$i].pregAdaptation < 500 && $slaves[$i].broodmother < 1>> <<set _miscarriageChance = -10>> - <<set _miscarriageChance += (($slaves[$i].bellyPreg/1000)-$slaves[$i].pregAdaptation)>> /* this could use to not be linear */ + <<set _miscarriageChance += (($slaves[$i].bellyPreg/1000)-$slaves[$i].pregAdaptation)>> // this could use to not be linear <<if $slaves[$i].inflation > 0>> <<set _miscarriageChance += 10>> <</if>> @@ -8119,7 +8119,7 @@ <<set _miscarriageChance -= 300>> <<elseif $slaves[$i].assignment == "rest">> <<set _miscarriageChance -= 100>> - <<elseif $slaves[$i].assignment == ""rest in the spa"">> + <<elseif $slaves[$i].assignment == "rest in the spa">> <<set _miscarriageChance -= 50>> <<elseif $slaves[$i].assignment == "get treatment in the clinic">> <<if $Nurse != 0>> @@ -8159,9 +8159,9 @@ <</if>> <</if>> <</if>> - <<if _miscarriage != 1 && (($slaves[$i].belly > ($slaves[$i].pregAdaptation*3200)) || $slaves[$i].bellyPreg > 600000)>> /*If she can't relieve the pressure that way, will she hold?*/ + <<if _miscarriage != 1 && (($slaves[$i].belly > ($slaves[$i].pregAdaptation*3200)) || $slaves[$i].bellyPreg > 600000)>> // If she can't relieve the pressure that way, will she hold? <<set _miscarriageChance = -80>> - <<set _burstChance += (($slaves[$i].belly/1000)-$slaves[$i].pregAdaptation)>> /* this could use to not be linear */ + <<set _burstChance += (($slaves[$i].belly/1000)-$slaves[$i].pregAdaptation)>> // this could use to not be linear <<if $slaves[$i].health < -20>> <<set _burstChance -= ($slaves[$i].health)>> <<elseif $slaves[$i].health > 80>> -- GitLab