From cdffa2c80b915a994bf25ab3c1cf76aef5230e9b Mon Sep 17 00:00:00 2001 From: ezsh <ezsh.junk@gmail.com> Date: Thu, 11 Apr 2019 02:41:48 +0200 Subject: [PATCH] Move half the whore skill to the whoring skill for v1043 --- src/init/storyInit.tw | 2 +- src/uncategorized/BackwardsCompatibility.tw | 18 ++++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index 47cd7488a7f..93eb67cc5af 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License along with thi <<set $returnTo = "init", $nextButton = "Continue", $nextLink = "Alpha disclaimer">> <<unset $releaseID>> -<<set $ver = "0.10.7", $pmodVer = "2.3.X", $releaseID = 1043>> +<<set $ver = "0.10.7", $pmodVer = "2.3.X", $releaseID = 1044>> <<if ndef $pmodVer>><<set $pmodVer = "2.3.X">><</if>> /* This needs to be broken down into individual files that can be added to StoryInit instead. */ diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index 509a1e68651..fd0c90f7b4d 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -3441,6 +3441,20 @@ Done<br> Done<br> <</if>> +<<if $releaseID === 1043>> + <<run $slaves.forEach(s => { s.skill.whoring = s.skill.whore/2; })>> + <<run $tanks.forEach(s => { s.skill.whoring = s.skill.whore/2; })>> + <<run $cribs.forEach(s => { s.skill.whoring = s.skill.whore/2; })>> + <<run $heroSlaves.forEach(hs => { + if (hs.hasOwnProperty("skill") && hs.skill.hasOwnProperty("whore")) { + hs.skill.whoring = hs.skill.whore; + delete hs.skill.whore; + } + }); + >> +<</if>> + + <<set $slavesOriginal = []>> /* not used by pregmod */ Updating gene pool records: @@ -3685,8 +3699,8 @@ Done! <</for>> <</if>> -<<if $releaseID < 1043>> - <<set $releaseID = 1043>> +<<if $releaseID < 1044>> + <<set $releaseID = 1044>> <</if>> <<set $HackingSkillMultiplier = HackingSkillMultiplier()>> -- GitLab