Checked that Penis thoughts are only for adults

This commit is contained in:
Vegapnk 2024-07-03 20:45:21 +02:00
parent 9e53ecd597
commit c588939fa7
2 changed files with 5 additions and 1 deletions

View file

@ -26,6 +26,8 @@ namespace RJW_Genes
// Do nothing if Pawn is Baby or Child (#25)
if (!pawn.ageTracker.Adult)
return (ThoughtState)false;
if (!other.ageTracker.Adult)
return (ThoughtState)false;
// Only check if they are spawned humans
if (!pawn.Spawned || !other.Spawned)
return (ThoughtState)false;