mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Remove unnecessary null check
This commit is contained in:
parent
1dcd67c97c
commit
ef6bae09be
1 changed files with 1 additions and 1 deletions
|
@ -971,7 +971,7 @@ namespace RJW_Menstruation
|
||||||
if (Pawn.HasIUD()) antisperm = 0.70f + asafactor;
|
if (Pawn.HasIUD()) antisperm = 0.70f + asafactor;
|
||||||
else antisperm = 0.0f + asafactor;
|
else antisperm = 0.0f + asafactor;
|
||||||
|
|
||||||
absorber = (Absorber)Pawn.apparel?.WornApparel?.Find(x => x is Absorber);
|
absorber = (Absorber)Pawn.apparel?.WornApparel.Find(x => x is Absorber);
|
||||||
if (absorber != null)
|
if (absorber != null)
|
||||||
{
|
{
|
||||||
absorber.WearEffect(TickInterval);
|
absorber.WearEffect(TickInterval);
|
||||||
|
|
Loading…
Reference in a new issue