mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Remove vaginal washing order for pawns that don't cycle
This commit is contained in:
parent
80611882c9
commit
3d9b22776e
1 changed files with 6 additions and 2 deletions
|
@ -33,8 +33,12 @@ namespace RJW_Menstruation
|
|||
|
||||
foreach (LocalTargetInfo t in selftargets)
|
||||
{
|
||||
if (t.Pawn == pawn && pawn.HasMenstruationComp()) opts.AddDistinct(MakeSelfMenu(pawn, t));
|
||||
break;
|
||||
if (t.Pawn == pawn)
|
||||
{
|
||||
if (pawn.HasMenstruationComp() && pawn.ShouldCycle())
|
||||
opts.AddDistinct(MakeSelfMenu(pawn, t));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue