From 3fb3d21420e36dc0ff65649c90619c973edcdc09 Mon Sep 17 00:00:00 2001 From: lutepickle <28810-lutepickle@users.noreply.gitgud.io> Date: Wed, 24 Aug 2022 18:39:47 -0700 Subject: [PATCH] Compare comps for womb gizmo duplication instead --- 1.3/source/RJW_Menstruation/RJW_Menstruation/UI/Gizmo_Womb.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1.3/source/RJW_Menstruation/RJW_Menstruation/UI/Gizmo_Womb.cs b/1.3/source/RJW_Menstruation/RJW_Menstruation/UI/Gizmo_Womb.cs index 41e03b4..221ca72 100644 --- a/1.3/source/RJW_Menstruation/RJW_Menstruation/UI/Gizmo_Womb.cs +++ b/1.3/source/RJW_Menstruation/RJW_Menstruation/UI/Gizmo_Womb.cs @@ -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); }