Have the default constructor for eggs use the human lifespan

This commit is contained in:
lutepickle 2023-07-28 09:50:13 -07:00
parent eb0d40ea1a
commit 214ab3ae88
1 changed files with 1 additions and 1 deletions

View File

@ -2004,7 +2004,7 @@ namespace RJW_Menstruation
public Egg()
{
fertilized = false;
lifeSpanTicks = (int)(96 * GenDate.TicksPerHour * Configurations.EggLifespanMultiplier);
lifeSpanTicks = (int)(VariousDefOf.HumanVaginaCompProperties.eggLifespanDays * GenDate.TicksPerDay * Configurations.EggLifespanMultiplier);
fertilizer = null;
ageTicks = 0;
}