mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Have ThoughtCumInside test for the existence of a memory thought handler instead of just being human
This commit is contained in:
parent
c402f871b6
commit
b70b4a6c90
2 changed files with 3 additions and 3 deletions
1.5
Assemblies
source/RJW_Menstruation/RJW_Menstruation/HediffComps
Binary file not shown.
|
@ -1768,10 +1768,10 @@ namespace RJW_Menstruation
|
|||
|
||||
protected virtual void ThoughtCumInside(Pawn cummer)
|
||||
{
|
||||
if (!xxx.is_human(Pawn) || !xxx.is_human(cummer)) return;
|
||||
MemoryThoughtHandler cummerMemories = cummer?.needs?.mood?.thoughts.memories;
|
||||
MemoryThoughtHandler pawnMemories = Pawn?.needs?.mood?.thoughts.memories;
|
||||
|
||||
MemoryThoughtHandler cummerMemories = cummer.needs.mood.thoughts.memories;
|
||||
MemoryThoughtHandler pawnMemories = Pawn.needs.mood.thoughts.memories;
|
||||
if (cummerMemories == null || pawnMemories == null) return;
|
||||
|
||||
if (cummer.IsProPregnancy(out Precept preceptm) || (cummer.IsTeratophile() != (Pawn.GetStatValue(StatDefOf.PawnBeauty) >= 0)))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue