mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Compare commits
3 commits
80243c78f1
...
08ebaa9db3
Author | SHA1 | Date | |
---|---|---|---|
|
08ebaa9db3 | ||
|
4af5195de9 | ||
|
eddccdc2ea |
2 changed files with 7 additions and 7 deletions
Binary file not shown.
|
@ -1140,11 +1140,13 @@ namespace RJW_Menstruation
|
|||
initError = true;
|
||||
Props = (CompProperties_Menstruation)props;
|
||||
|
||||
if (cums == null) cums = new List<Cum>();
|
||||
if (eggs == null) eggs = new List<Egg>();
|
||||
|
||||
Notify_UpdatedGenes();
|
||||
|
||||
if (Props.infertile)
|
||||
{
|
||||
if (cums == null) cums = new List<Cum>();
|
||||
curStage = Stage.None;
|
||||
loaded = true;
|
||||
initError = false;
|
||||
|
@ -1170,8 +1172,6 @@ namespace RJW_Menstruation
|
|||
}
|
||||
if (crampPain < 0) crampPain = PainRandomizer();
|
||||
InitializeExtraValues();
|
||||
if (cums == null) cums = new List<Cum>();
|
||||
if (eggs == null) eggs = new List<Egg>();
|
||||
|
||||
TakeLoosePregnancy();
|
||||
|
||||
|
@ -1968,10 +1968,10 @@ namespace RJW_Menstruation
|
|||
ageTicks = 0;
|
||||
}
|
||||
|
||||
public Egg(int lifespanhrs)
|
||||
public Egg(int lifespanticks)
|
||||
{
|
||||
fertilized = false;
|
||||
lifeSpanTicks = (int)(lifespanhrs * GenDate.TicksPerHour * Configurations.EggLifespanMultiplier);
|
||||
lifeSpanTicks = (int)(lifespanticks * Configurations.EggLifespanMultiplier);
|
||||
fertilizer = null;
|
||||
ageTicks = 0;
|
||||
}
|
||||
|
@ -1991,10 +1991,10 @@ namespace RJW_Menstruation
|
|||
if (fertstage >= 0) ticksSinceFertilization = fertstage * GenDate.TicksPerHour;
|
||||
}
|
||||
Scribe_References.Look(ref fertilizer, "fertilizer", true);
|
||||
Scribe_Values.Look(ref fertilized, "fertilized", fertilized, true);
|
||||
Scribe_Values.Look(ref fertilized, "fertilized", false);
|
||||
Scribe_Values.Look(ref lifeSpanTicks, "lifeSpanTicks", lifeSpanTicks, true);
|
||||
Scribe_Values.Look(ref ageTicks, "ageTicks", ageTicks, true);
|
||||
Scribe_Values.Look(ref ticksSinceFertilization, "ticksSinceFertilization", ticksSinceFertilization, true);
|
||||
Scribe_Values.Look(ref ticksSinceFertilization, "ticksSinceFertilization", 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue