mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Make not-cum not fertilize
This commit is contained in:
parent
c9a27f0935
commit
4e3fa05af9
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -1113,7 +1113,7 @@ namespace RJW_Menstruation
|
|||
protected Pawn Fertilize()
|
||||
{
|
||||
if (cums.NullOrEmpty()) return null;
|
||||
List<Cum> eligibleCum = cums.FindAll(cum => cum.FertVolume > 0 && cum.pawn != null && (RJWPregnancySettings.bestial_pregnancy_enabled || xxx.is_animal(parent.pawn) == xxx.is_animal(cum.pawn)));
|
||||
List<Cum> eligibleCum = cums.FindAll(cum => !cum.notcum && cum.FertVolume > 0 && cum.pawn != null && (RJWPregnancySettings.bestial_pregnancy_enabled || xxx.is_animal(parent.pawn) == xxx.is_animal(cum.pawn)));
|
||||
if (eligibleCum.Count == 0) return null;
|
||||
|
||||
float totalFertPower = 0;
|
||||
|
|
Loading…
Reference in a new issue