From 944ab259b0936849dc0230287b7b08a35d491cbc Mon Sep 17 00:00:00 2001 From: kopareigns <kopareigns@gmail.com> Date: Sat, 26 May 2018 20:01:38 -0400 Subject: [PATCH] fixes --- src/pregmod/widgets/bodySwapReaction.tw | 4 ++-- src/pregmod/widgets/bodyswapWidgets.tw | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pregmod/widgets/bodySwapReaction.tw b/src/pregmod/widgets/bodySwapReaction.tw index 36b8b2ff98d..a81722303b7 100644 --- a/src/pregmod/widgets/bodySwapReaction.tw +++ b/src/pregmod/widgets/bodySwapReaction.tw @@ -804,7 +804,7 @@ Now you only have to wait for her to wake up. <<else>> surprises her. She is not happy with your doing something like this while she had no control of it, but under the circumstances there are far worse things to have than hair. <</if>> - <<elseif $args[0].bald == 0 && $args[1].bald == 0>> + <<elseif $args[0].bald == 1 && $args[1].bald == 1>> <<if canSee($args[0])>> Something about her head catches her eye, but it turned out to be nothing. She is as bald as ever. <<else>> @@ -2200,7 +2200,7 @@ Now you only have to wait for her to wake up. <<else>> surprises her. She is not happy with your doing something like this while she had no control of it, but under the circumstances there are far worse things to have than hair. <</if>> - <<elseif $args[0].bald == 0 && $args[1].bald == 0>> + <<elseif $args[0].bald == 1 && $args[1].bald == 1>> Something about her head catches her eye, but it turned out to be nothing. She is as bald as ever. <<else>> Something about her head catches her diff --git a/src/pregmod/widgets/bodyswapWidgets.tw b/src/pregmod/widgets/bodyswapWidgets.tw index 765d6a216c1..7210caa5869 100644 --- a/src/pregmod/widgets/bodyswapWidgets.tw +++ b/src/pregmod/widgets/bodyswapWidgets.tw @@ -163,7 +163,7 @@ <<set $args[0].bellyFluid = $args[1].bellyFluid>> <<set $args[0].readyOva = $args[1].readyOva>> <<set $args[0].reservedChildren = $args[1].reservedChildren>> -<<set $args[0].womb = $args[1].womb>> /* this is array assigned by reference, if slave body that is $args[1] will be stil used anywhere in code (not discarded) - it's WRONG (they now technically share one womb object). Please tell me about it then. But if old body $args[1] just discarded - it's no problem then.*/ +<<set $args[0].womb = clone($args[1].womb)>> /* this is array assigned by reference, if slave body that is $args[1] will be stil used anywhere in code (not discarded) - it's WRONG (they now technically share one womb object). Please tell me about it then. But if old body $args[1] just discarded - it's no problem then.*/ <<set $args[0].laborCount = $args[1].laborCount>> <<set $args[0].canRecruit = 0>> -- GitLab