mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Try to account for number of children for induced eggs used
This commit is contained in:
parent
bdfbcf1edf
commit
c1d3f356f2
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ namespace RJW_Menstruation
|
|||
// There's really no good way to estimate the number of times it's been induced, so this is all we can do
|
||||
protected override int PawnEggsUsed(float pawnCyclesElapsed, float avglittersize)
|
||||
{
|
||||
return 0;
|
||||
return Mathf.CeilToInt((Pawn.relations?.ChildrenCount ?? 0) / Configurations.ImplantationChanceDefault);
|
||||
}
|
||||
|
||||
protected override void GoOvulatoryStage(bool climacteric)
|
||||
|
|
Loading…
Reference in a new issue