mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Don't merge a pregnancy with other pregnancies.
This commit is contained in:
parent
b5d89129b2
commit
f015b2e849
3 changed files with 8 additions and 0 deletions
Binary file not shown.
|
@ -731,6 +731,13 @@ namespace RJW_Menstruation
|
|||
if (pawn.Tile == -1) return "";
|
||||
return GenDate.DateFullStringWithHourAt(GenDate.TickGameToAbs((int)p_end_tick), Find.WorldGrid.LongLatOf(pawn.Tile));
|
||||
}
|
||||
|
||||
public override bool TryMergeWith(Hediff other)
|
||||
{
|
||||
if (other is Hediff_MultiplePregnancy preg)
|
||||
return this.GetMenstruationComp() == preg.GetMenstruationComp();
|
||||
else return base.TryMergeWith(other);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
Version 1.0.7.3
|
||||
- Fix null reference error upon birth of female pawns.
|
||||
- Properly display multiple icons for pawns with multiple wombs.
|
||||
- Fix only a single womb being able to become pregnant at a time. Requires multiple pregnancy enabled in the options.
|
||||
- Show the 'about to ovulate' icon in the womb dialog for induced ovulators during vaginal sex.
|
||||
- Display more insect eggs in a womb when someone has more, with new graphics by Euldrop.
|
||||
|
||||
|
|
Loading…
Reference in a new issue