Rename ProcessIdenticalZygote to ProcessIdenticalSibling

This commit is contained in:
lutepickle 2022-07-27 14:32:50 -07:00
parent aab02f07fb
commit 5b6093fd86
2 changed files with 5 additions and 3 deletions

View file

@ -232,7 +232,7 @@ namespace RJW_Menstruation
}
// Baby is the sibling to be changed, original is the first of the set and the one to copy to the rest.
public virtual void ProcessIdenticalZygote(Pawn baby, Pawn original)
public virtual void ProcessIdenticalSibling(Pawn baby, Pawn original)
{
// They'll be the same pawnkind, which lets us make a lot of useful assumptions
// However, some RNG might still be involved in genital generation (e.g. futas), so the easiest method is to clear out and re-generate
@ -247,7 +247,7 @@ namespace RJW_Menstruation
base.PostBirth(mother, father, baby);
if (zygotes.NullOrEmpty() || !zygotes.TryGetValue(baby, out Pawn original) || baby == original) return;
// Has to happen on birth since RJW redoes the genitals at birth
ProcessIdenticalZygote(baby, original);
ProcessIdenticalSibling(baby, original);
}
// From RJW's trait code