Remove a bit of namespace from CumOut

This commit is contained in:
lutepickle 2022-08-17 15:55:28 -07:00
parent d98a102d44
commit 08e3a2fd51
1 changed files with 1 additions and 1 deletions

View File

@ -823,7 +823,7 @@ namespace RJW_Menstruation
if (cums.NullOrEmpty()) return;
if (TotalCum > Props.maxCumCapacity * parent.pawn.BodySize) leakfactor = Math.Min(1 + (TotalCum - Props.maxCumCapacity * parent.pawn.BodySize) / 10, 2f);
if (absorber != null && absorber.dirty && !absorber.LeakAfterDirty) leakfactor = 0f;
if (parent.pawn.jobs?.curJob?.def == rjw.xxx.knotted) leakfactor = 0f;
if (parent.pawn.jobs?.curJob?.def == xxx.knotted) leakfactor = 0f;
List<Cum> removecums = new List<Cum>();
foreach (Cum cum in cums)
{