Compare comps for womb gizmo duplication instead

This commit is contained in:
lutepickle 2022-08-24 18:39:47 -07:00
parent ed682738dc
commit 3fb3d21420
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ namespace RJW_Menstruation
public override bool GroupsWith(Gizmo other)
{
if (other is Gizmo_Womb womb && womb != this) return false;
if (other is Gizmo_Womb womb && womb.comp != this.comp) return false;
else return base.GroupsWith(other);
}