using Verse; using rjw; namespace RJW_Genes { /// /// Dummy Gene that does not alter the genitalia size. Normal RJW Logic and rolled sizes are kept. /// public class Gene_NormalAnus : Gene { public override void PostMake() { base.PostMake(); if (GenitaliaUtility.PawnStillNeedsGenitalia(pawn)) Sexualizer.sexualize_pawn(pawn); } } }