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
Binary file not shown.
|
@ -1768,10 +1768,10 @@ namespace RJW_Menstruation
|
||||||
|
|
||||||
protected virtual void ThoughtCumInside(Pawn cummer)
|
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;
|
if (cummerMemories == null || pawnMemories == null) return;
|
||||||
MemoryThoughtHandler pawnMemories = Pawn.needs.mood.thoughts.memories;
|
|
||||||
|
|
||||||
if (cummer.IsProPregnancy(out Precept preceptm) || (cummer.IsTeratophile() != (Pawn.GetStatValue(StatDefOf.PawnBeauty) >= 0)))
|
if (cummer.IsProPregnancy(out Precept preceptm) || (cummer.IsTeratophile() != (Pawn.GetStatValue(StatDefOf.PawnBeauty) >= 0)))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue