mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
20 lines
473 B
C#
20 lines
473 B
C#
using Verse;
|
|
using rjw;
|
|
|
|
namespace RJW_Genes
|
|
{
|
|
/// <summary>
|
|
/// Dummy Gene that does not alter the genitalia size. Normal RJW Logic and rolled sizes are kept.
|
|
/// </summary>
|
|
public class Gene_NormalMaleGenitalia : Gene
|
|
{
|
|
|
|
public override void PostMake()
|
|
{
|
|
base.PostMake();
|
|
if (GenitaliaUtility.PawnStillNeedsGenitalia(pawn))
|
|
Sexualizer.sexualize_pawn(pawn);
|
|
}
|
|
|
|
}
|
|
}
|