mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Cum.fertFactor is unused for now, so remove it from the Fertilize() calculation
This commit is contained in:
parent
e978feedb0
commit
8b48fe51e5
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue