From b0ea928a50893a0f7f7394d36b81c75880d634ac Mon Sep 17 00:00:00 2001 From: lutepickle <28810-lutepickle@users.noreply.gitgud.io> Date: Wed, 20 Mar 2024 14:44:32 -0700 Subject: [PATCH] Log a message when trying to add egg to existing base pregnancy (or hetero twins disabled) --- .../RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/1.5/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs b/1.5/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs index f90cbd4..459cc7f 100644 --- a/1.5/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs +++ b/1.5/source/RJW_Menstruation/RJW_Menstruation/HediffComps/HediffComp_Menstruation.cs @@ -1459,6 +1459,7 @@ namespace RJW_Menstruation break; case Hediff_BasePregnancy _: default: + if (Configurations.Debug) Log.Message($"Not adding to existing pregnancy {pregnancy?.GetUniqueLoadID()}"); pregnant = true; deadeggs.Add(egg); break;