mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Correct comment on CumIn, remove stray semicolon
This commit is contained in:
parent
02194fe941
commit
4dbfe6c1d5
1 changed files with 2 additions and 2 deletions
|
@ -596,7 +596,7 @@ namespace RJW_Menstruation
|
||||||
/// Inject pawn's cum into womb
|
/// Inject pawn's cum into womb
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="pawn"></param>
|
/// <param name="pawn"></param>
|
||||||
/// <param name="injectedvolume"></param>
|
/// <param name="volume"></param>
|
||||||
/// <param name="fertility"></param>
|
/// <param name="fertility"></param>
|
||||||
/// <param name="filthdef"></param>
|
/// <param name="filthdef"></param>
|
||||||
public void CumIn(Pawn pawn, float volume, float fertility = 1.0f, ThingDef filthdef = null)
|
public void CumIn(Pawn pawn, float volume, float fertility = 1.0f, ThingDef filthdef = null)
|
||||||
|
@ -889,7 +889,7 @@ namespace RJW_Menstruation
|
||||||
if (cycleSpeed < 0f) cycleSpeed = Utility.RandGaussianLike(0.8f, 1.2f);
|
if (cycleSpeed < 0f) cycleSpeed = Utility.RandGaussianLike(0.8f, 1.2f);
|
||||||
if (cycleVariability < 0f) cycleVariability = Utility.RandomVariabilityPercent();
|
if (cycleVariability < 0f) cycleVariability = Utility.RandomVariabilityPercent();
|
||||||
if (currentIntervalHours < 0)
|
if (currentIntervalHours < 0)
|
||||||
{;
|
{
|
||||||
if (parent.pawn.health.capacities.GetLevel(xxx.reproduction) <= 0) curStage = Stage.Young;
|
if (parent.pawn.health.capacities.GetLevel(xxx.reproduction) <= 0) curStage = Stage.Young;
|
||||||
else if (!IsBreedingSeason()) curStage = Stage.Anestrus;
|
else if (!IsBreedingSeason()) curStage = Stage.Anestrus;
|
||||||
else curStage = RandomStage();
|
else curStage = RandomStage();
|
||||||
|
|
Loading…
Reference in a new issue