mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Display unfertilized eggs properly
This commit is contained in:
parent
c1d3f356f2
commit
257a20797c
3 changed files with 2 additions and 1 deletions
Binary file not shown.
|
@ -393,7 +393,7 @@ namespace RJW_Menstruation
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
if (eggs.NullOrEmpty()) return -1;
|
if (eggs?.All(egg => !egg.fertilized) ?? true) return -1;
|
||||||
return eggs.Max(egg => egg.fertstage);
|
return eggs.Max(egg => egg.fertstage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
Version 1.0.7.4
|
Version 1.0.7.4
|
||||||
- Fix errors when using mods with bad HediffCompProperties.
|
- Fix errors when using mods with bad HediffCompProperties.
|
||||||
|
- Fix egg appearing to be fertilized in womb display when it isn't.
|
||||||
- Induced ovulators will start with a lower number of eggs, but reasonably enough for a long breeding life. IUDs or sex with poor fertility partners may result in early menopause.
|
- Induced ovulators will start with a lower number of eggs, but reasonably enough for a long breeding life. IUDs or sex with poor fertility partners may result in early menopause.
|
||||||
- Updated max size areola images by wruf.
|
- Updated max size areola images by wruf.
|
||||||
- Title addition on pregnancy removed to match RJW 5.1.0.
|
- Title addition on pregnancy removed to match RJW 5.1.0.
|
||||||
|
|
Loading…
Reference in a new issue