Just have Hediff_MultiplePregnancy.TryMergeWith unconditionally return false. The comp comparison doesn't work since at that point it's not registered to a comp yet.

This commit is contained in:
lutepickle 2022-08-27 23:05:50 -07:00
parent 84d5ffa8b7
commit b3b34362d6

View file

@ -734,9 +734,7 @@ namespace RJW_Menstruation
public override bool TryMergeWith(Hediff other)
{
if (other is Hediff_MultiplePregnancy preg)
return this.GetMenstruationComp() == preg.GetMenstruationComp();
else return base.TryMergeWith(other);
return false;
}
}