Remove the early exit from the implant loop for non-RJW multiple pregnancy. This lets Biotech fraternal twins implant in the same hour.

This commit is contained in:
lutepickle 2023-03-19 22:39:55 -07:00
parent e5aa310528
commit 310c03a193
3 changed files with 3 additions and 3 deletions

View file

@ -1457,9 +1457,7 @@ namespace RJW_Menstruation
rjw_preg.p_start_tick -= egg.fertstage / Configurations.CycleAcceleration * GenDate.TicksPerHour;
rjw_preg.p_end_tick -= egg.fertstage / Configurations.CycleAcceleration * GenDate.TicksPerHour;
}
if (!(pregnancy is Hediff_MultiplePregnancy)) break;
}
}
else
{

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Manifest>
<identifier>RJW Menstruation</identifier>
<version>1.0.8.8</version>
<version>1.0.8.9</version>
<dependencies>
</dependencies>
<incompatibleWith />

View file

@ -1,3 +1,5 @@
Version 1.0.8.9
Version 1.0.8.8
- Fix pawns skipping straight to menopause instead of going through climacteric stages.
- Fix father appearing as "Null" in womb dialog for some Biotech pregnancies.