nsfwalex commited on
Commit
0641005
1 Parent(s): 45fbdbf

Update psv1.js

Browse files
Files changed (1) hide show
  1. psv1.js +4 -3
psv1.js CHANGED
@@ -3826,9 +3826,10 @@ function generateSexyPrompt(
3826
 
3827
  if (penetrationActions.length)
3828
  description += ` ${randomPick(penetrationActions)}`;
3829
- description += `, ${randomPick(foreplayActions)}, ${randomPick(
3830
- climaxActions
3831
- )}`;
 
3832
 
3833
  return description;
3834
  }
 
3826
 
3827
  if (penetrationActions.length)
3828
  description += ` ${randomPick(penetrationActions)}`;
3829
+ if (foreplayActions)
3830
+ description += `, ${randomPick(foreplayActions)}`;
3831
+ if (climaxActions)
3832
+ description += `, ${randomPick(climaxActions)}`;
3833
 
3834
  return description;
3835
  }