Have breeder pawns boost implant chance for non-Biotech

This commit is contained in:
lutepickle 2024-03-05 19:14:28 -08:00
parent e964b2af93
commit f580d3232b
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ namespace RJW_Menstruation
}
else
{
return Pawn.health.capacities.GetLevel(xxx.reproduction) * Props.baseImplantationChanceFactor * FertilityModifier;
return Pawn.health.capacities.GetLevel(xxx.reproduction) * Props.baseImplantationChanceFactor * FertilityModifier * (Pawn.IsBreeder() ? 10.0f : 1.0f);
}
}