Skip to content
Snippets Groups Projects
Commit 5838783a authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'pregmod-master' into 'pregmod-master'

Don't copy random nursery children into the incubator during birthStorm.

Closes #1521

See merge request pregmodfan/fc-pregmod!6344
parents 093a3e4c 768e299b
No related branches found
No related tags found
No related merge requests found
...@@ -211,19 +211,18 @@ The remote surgery allows the removal of the pregnancy generator through convent ...@@ -211,19 +211,18 @@ The remote surgery allows the removal of the pregnancy generator through convent
<<if _cToIncub > 0 || _cToNursery > 0>> <<if _cToIncub > 0 || _cToNursery > 0>>
<<for _cb = 0; _cb < _curBabies; _cb++>> /* if there is no reserved children, code in loop will not trigger */ <<for _cb = 0; _cb < _curBabies; _cb++>> /* if there is no reserved children, code in loop will not trigger */
<<if $mom.curBabies[_cb].reserve == "incubator">> <<if $mom.curBabies[_cb].reserve == "incubator">>
<<set $activeSlave = generateChild($mom, $mom.curBabies[_cb], 1)>> <<set $activeChild = generateChild($mom, $mom.curBabies[_cb], 1)>>
<<include "Incubator Workaround">> <<include "Incubator Workaround">>
<<run $mom.curBabies.splice($mom.curBabies[_cb], 1)>> <<run $mom.curBabies.splice($mom.curBabies[_cb], 1)>>
<<set _cb--, _curBabies-->> <<set _cb--, _curBabies-->>
<<elseif $mom.curBabies[_cb].reserve == "nursery">> <<elseif $mom.curBabies[_cb].reserve == "nursery">>
<<set $activeSlave = generateChild($mom, $mom.curBabies[_cb])>> <<set $activeChild = generateChild($mom, $mom.curBabies[_cb])>>
<<include "Nursery Workaround">> <<include "Nursery Workaround">>
<<run $mom.curBabies.splice($mom.curBabies[_cb], 1)>> <<run $mom.curBabies.splice($mom.curBabies[_cb], 1)>>
<<set _cb--, _curBabies-->> <<set _cb--, _curBabies-->>
<</if>> <</if>>
<</for>> <</for>>
<</if>> <</if>>
<<set $activeSlave = $mom>>
<<else>> <<else>>
/*No live babies. Placeholder */ /*No live babies. Placeholder */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment