Trying to remove Sex-Change Thoughts for Babies, fixes #103

This commit is contained in:
Vegapnk 2024-06-26 18:47:50 +02:00
parent e13c00ce01
commit 70ffef13c8
4 changed files with 22 additions and 1 deletions

View file

@ -14,12 +14,15 @@ namespace RJW_Genes
// Here we call Sexualization after the Sex-Change
if (GenitaliaUtility.PawnStillNeedsGenitalia(pawn))
Sexualizer.sexualize_pawn(pawn);
GenderUtility.RemoveSexChangeThoughtsIfTooYoung(this.pawn);
}
public override void PostAdd()
{
base.PostMake();
AdjustPawnToMale();
GenderUtility.RemoveSexChangeThoughtsIfTooYoung(this.pawn);
}
private void AdjustPawnToMale()