Skip to content
Snippets Groups Projects
Commit e2d08431 authored by svornost's avatar svornost
Browse files

Fully renormalize pregnancies after removing a fetus. Avoids some bad states...

Fully renormalize pregnancies after removing a fetus.  Avoids some bad states when ovum 0 is terminated, especially if it's the last ovum remaining.
parent cbc12703
No related branches found
No related tags found
1 merge request!5701Fully renormalize pregnancies after removing a fetus
...@@ -664,7 +664,7 @@ window.WombRemoveFetus = function(actor, fetusNum) { ...@@ -664,7 +664,7 @@ window.WombRemoveFetus = function(actor, fetusNum) {
let ft = actor.womb[fetusNum]; let ft = actor.womb[fetusNum];
actor.womb.splice(fetusNum, 1); actor.womb.splice(fetusNum, 1);
WombSort(actor); WombSort(actor);
actor.pregType = actor.womb.length; WombNormalizePreg(actor);
return ft; return ft;
} else { } else {
return null; return null;
......
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