mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
55554df7e2
Calls RemoveAllSexChangeThoughts via a notify method that we call after PawnGenerator creates genes
24 lines
579 B
C#
24 lines
579 B
C#
using rjw;
|
|
using Verse;
|
|
|
|
namespace RJW_Genes
|
|
{
|
|
public class RJW_Gene : Gene
|
|
{
|
|
|
|
public override void PostMake()
|
|
{
|
|
base.PostMake();
|
|
if (GenitaliaUtility.PawnStillNeedsGenitalia(pawn))
|
|
Sexualizer.sexualize_pawn(pawn);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Executed via PawnGenerator.GenerateGenes at Pawn generation
|
|
/// Allows for execution of code that should only happen during PawnGeneration
|
|
/// </summary>
|
|
public virtual void Notify_OnPawnGeneration()
|
|
{
|
|
}
|
|
}
|
|
}
|