From 270ff926417da944710fab30b24237f3cece3302 Mon Sep 17 00:00:00 2001 From: Seirra Blake Date: Wed, 14 Aug 2024 00:20:50 +0100 Subject: [PATCH] actually use the multiplier constant --- Source/Genes/Breeding/Genes/Gene_FerventOvipositor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Genes/Breeding/Genes/Gene_FerventOvipositor.cs b/Source/Genes/Breeding/Genes/Gene_FerventOvipositor.cs index e69b536..b2e76c7 100644 --- a/Source/Genes/Breeding/Genes/Gene_FerventOvipositor.cs +++ b/Source/Genes/Breeding/Genes/Gene_FerventOvipositor.cs @@ -31,7 +31,7 @@ namespace RJW_Genes if (OvipositorF == null) return; - OvipositorF.AsHediff.TryGetComp().NewEggCheckInterval = 10000 / 3; + OvipositorF.AsHediff.TryGetComp().NewEggCheckInterval = 10000 / MULTIPLIER; // DevNote: I first had a for-loop calling OviPositorF.tick(), but I fear that would be a performance sink. // Also, it would double other aspects as well, such as bleeding out through your insect-PP or dropping out the eggs.