mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Rename ProcessIdenticalZygote to ProcessIdenticalSibling
This commit is contained in:
parent
aab02f07fb
commit
5b6093fd86
2 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue