From 384842584656eca0df8e6ac8032a258bc5492c2a Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Wed, 30 May 2018 23:01:02 -0400 Subject: [PATCH] fixes --- devNotes/VersionChangeLog-Premod+LoliMod.txt | 3 +++ src/uncategorized/saDrugs.tw | 8 ++++---- src/uncategorized/saLongTermEffects.tw | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index 5d5f622d9a3..956fc2dca40 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -4,6 +4,9 @@ 5/30/2018 + 2 + -fixes + 1 -prosthetic limb rework (mutually exclusive with cybermod - backwards compatibility will allow switching between them) -various fixes diff --git a/src/uncategorized/saDrugs.tw b/src/uncategorized/saDrugs.tw index 3d19eb2a405..2a50bd78844 100644 --- a/src/uncategorized/saDrugs.tw +++ b/src/uncategorized/saDrugs.tw @@ -627,9 +627,9 @@ <<case "penis enhancement" "intensive penis enhancement">> <<set _growth = 60-($injectionUpgrade*10)>> <<if _intensive>><<set _growth -= 20>><</if>> - <<if $slaves[$i].inducedNCS == 1>> - <<set _growth -= 30>> - <</if>> + <<if $slaves[$i].inducedNCS == 1>> + <<set _growth += 30>> + <</if>> <<if ($slaves[$i].dick > 0)>> <<if (random(1,100) > _growth+($slaves[$i].dick*5))>> @@.lime;$possessiveCap cock grows painfully,@@ becoming both longer and girthier. @@ -700,7 +700,7 @@ <<set _growth = 60-($injectionUpgrade*10)>> <<if _intensive>><<set _growth -= 20>><</if>> <<if $slaves[$i].inducedNCS == 1>> - <<set _growth -= 30>> + <<set _growth += 30>> <</if>> <<if (random(1,100) > _growth+($slaves[$i].balls*5))>> @@.lime;$possessiveCap balls swell painfully.@@ diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index 450e513a83a..4e7168ac8f0 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -6335,7 +6335,7 @@ ** One or the other can happen per week as long as the hips and shoulders are bigger than the smallest ** level, though the chances get much more likely for the widest sizes. */ - <<if (($slaves[$i].hips >= -2) && (random(1,100) < (($slaves[$i].hips + 3) * 18)))>> + <<if ((($slaves[$i].hips-Math.abs($slaves[$i].hipsImplant)) > -2) && (random(1,100) < (($slaves[$i].hips + 3) * 18)))>> $possessiveCap @@.orange;NCS@@ gets busy @@.orange;reducing the size of $possessive <<if ($slaves[$i].hips >= 2)>>freakish <<elseif ($slaves[$i].hips >= 0)>>wide @@ -6343,7 +6343,7 @@ <</if>> hips.@@ <<set $slaves[$i].hips -= 1, _countNCS++>> - <<elseif (($slaves[$i].shoulders >= -2) && (random(1,100) < (($slaves[$i].shoulders + 3) * 18)))>> + <<elseif ((($slaves[$i].shoulders-Math.abs($slaves[$i].shouldersImplant)) > -2) && (random(1,100) < (($slaves[$i].shoulders + 3) * 18)))>> $possessiveCap @@.orange;NCS@@ applies and @@.orange;reduces the size of $possessive <<if ($slaves[$i].shoulders >= 2)>>domineering <<elseif ($slaves[$i].shoulders >= 0)>> -- GitLab