Cum.fertFactor is unused for now, so remove it from the Fertilize() calculation

This commit is contained in:
lutepickle 2022-06-01 20:34:18 -07:00
parent e978feedb0
commit 8b48fe51e5
1 changed files with 1 additions and 1 deletions

View File

@ -1118,7 +1118,7 @@ namespace RJW_Menstruation
foreach (Cum cum in cums)
{
float rand = Rand.Range(0.0f, 1.0f);
if (cum.pawn != null && !cum.notcum && rand < cum.FertVolume * cum.fertFactor * Configurations.FertilizeChance * Props.basefertilizationChanceFactor)
if (cum.pawn != null && !cum.notcum && rand < cum.FertVolume * Configurations.FertilizeChance * Props.basefertilizationChanceFactor)
{
if (!RJWPregnancySettings.bestial_pregnancy_enabled && (xxx.is_animal(parent.pawn) ^ xxx.is_animal(cum.pawn))) continue;
parent.pawn.records.AddTo(VariousDefOf.AmountofFertilizedEggs, 1);