mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Have the aftersim sexneed incrementer base off the number of vaginas
This commit is contained in:
parent
3512f55363
commit
450d7da36c
1 changed files with 2 additions and 5 deletions
|
@ -1100,13 +1100,10 @@ namespace RJW_Menstruation
|
|||
|
||||
protected void AfterSimulator()
|
||||
{
|
||||
if (Configurations.EnableMenopause && ovarypower < OvaryPowerThreshold)
|
||||
if (EggHealth < 1f)
|
||||
{
|
||||
if (sexNeed == null) sexNeed = Pawn.needs.TryGetNeed(VariousDefOf.SexNeed);
|
||||
else
|
||||
{
|
||||
if (sexNeed.CurLevel < 0.5) sexNeed.CurLevel += 0.01f;
|
||||
}
|
||||
if (sexNeed?.CurLevel < 0.5) sexNeed.CurLevel += 0.01f / Pawn.GetMenstruationComps().Count();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue