Don't start the infection timer until the absorber is dirty

This commit is contained in:
lutepickle 2022-03-07 07:11:06 -08:00
parent 3e589524e1
commit dc832dfb0f
4 changed files with 2 additions and 2 deletions

Binary file not shown.

View file

@ -225,7 +225,7 @@ namespace RJW_Menstruation
public virtual void WearEffect() public virtual void WearEffect()
{ {
absorbedfluids += 0.1f; absorbedfluids += 0.1f;
wearhours++; if(dirty) wearhours++;
} }
public override Color DrawColorTwo => fluidColor; public override Color DrawColorTwo => fluidColor;
@ -246,7 +246,7 @@ namespace RJW_Menstruation
public override void WearEffect() public override void WearEffect()
{ {
wearhours++; if(dirty) wearhours++;
absorbedfluids += 0.5f; absorbedfluids += 0.5f;
} }