remove log messages

This commit is contained in:
moreoreganostodump 2021-02-03 14:54:25 +09:00
parent 82570419a2
commit fd2ded7091
4 changed files with 4 additions and 5 deletions

Binary file not shown.

View File

@ -32,14 +32,14 @@
<value>
<comps>
<li Class="RJW_Menstruation.CompProperties_Menstruation">
<maxCumCapacity>500</maxCumCapacity>
<maxCumCapacity>1000</maxCumCapacity>
<baseImplantationChanceFactor>0.5</baseImplantationChanceFactor>
<basefertilizationChanceFactor>0.2</basefertilizationChanceFactor>
<deviationFactor>0.05</deviationFactor>
<folicularIntervalDays>30</folicularIntervalDays>
<lutealIntervalDays>30</lutealIntervalDays>
<bleedingIntervalDays>0</bleedingIntervalDays>
<recoveryIntervalDays>10</recoveryIntervalDays>
<recoveryIntervalDays>15</recoveryIntervalDays>
<eggLifespanDays>30</eggLifespanDays>
<wombTex>Womb/Womb</wombTex>
<vagTex>Genitals/Vagina</vagTex>

View File

@ -275,7 +275,6 @@ namespace RJW_Menstruation
//Initialize();
}
public override void CompPostTick(ref float severityAdjustment)
{
//initializer moved to SpawnSetup
@ -516,7 +515,7 @@ namespace RJW_Menstruation
curStage = Stage.None;
HugsLibController.Instance.TickDelayScheduler.ScheduleCallback(PeriodSimulator(curStage), tickInterval, parent.pawn, false);
}
Log.Message(parent.pawn.Label + " - Initialized menstruation comp");
//Log.Message(parent.pawn.Label + " - Initialized menstruation comp");
loaded = true;
}

View File

@ -17,7 +17,7 @@ namespace RJW_Menstruation
{
public static void Postfix(Map map, bool respawningAfterLoad, Pawn __instance)
{
Log.Message("Initialize on spawnsetup");
//Log.Message("Initialize on spawnsetup");
HediffComp_Menstruation comp = Utility.GetMenstruationComp(__instance);
if (comp != null)
{