mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Flip the if in PostBirth
This commit is contained in:
parent
c5d8a92299
commit
814d500b45
1 changed files with 2 additions and 2 deletions
|
@ -243,8 +243,8 @@ namespace RJW_Menstruation
|
||||||
public override void PostBirth(Pawn mother, Pawn father, Pawn baby)
|
public override void PostBirth(Pawn mother, Pawn father, Pawn baby)
|
||||||
{
|
{
|
||||||
base.PostBirth(mother, father, baby);
|
base.PostBirth(mother, father, baby);
|
||||||
if (enzygoticSiblings.NullOrEmpty() || !enzygoticSiblings.TryGetValue(baby, out Pawn original) || baby == original) return;
|
|
||||||
// Has to happen on birth since RJW redoes the genitals at birth
|
// Has to happen on birth since RJW redoes the genitals at birth
|
||||||
|
if (!enzygoticSiblings.NullOrEmpty() && enzygoticSiblings.TryGetValue(baby, out Pawn original) && baby != original)
|
||||||
ProcessIdenticalSibling(baby, original);
|
ProcessIdenticalSibling(baby, original);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue