mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
21 lines
397 B
C#
21 lines
397 B
C#
namespace RJW_Genes
|
|
{
|
|
public class Gene_TightAnus : RJW_Gene
|
|
{
|
|
|
|
public override void PostMake()
|
|
{
|
|
base.PostMake();
|
|
|
|
SizeAdjuster.AdjustAllAnusSizes(pawn, 0.0f, 0.5f);
|
|
}
|
|
|
|
public override void PostAdd()
|
|
{
|
|
base.PostAdd();
|
|
SizeAdjuster.AdjustAllAnusSizes(pawn, 0.0f, 0.5f);
|
|
}
|
|
|
|
|
|
}
|
|
}
|