diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-18 19:52:13 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-18 19:52:13 +0000 |
commit | d708682f76bceebf7fd0524ab286dfabdc0c143d (patch) | |
tree | 866a5a69a35f68a5b51be293a5d38cc744682940 /scripts/toy.groovy | |
parent | Remove weird loopy choice thing in preStrip (diff) | |
download | toy-d708682f76bceebf7fd0524ab286dfabdc0c143d.zip |
Don't schedule another permit cum when toy already has permission
Diffstat (limited to 'scripts/toy.groovy')
-rw-r--r-- | scripts/toy.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy index 3b69d97..80b0c47 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -1037,7 +1037,7 @@ def sessionPlay = { playRepeat(1 + getRandom(3), [preRelease, preEdge, preGag, preClamps, preCollar, preStrip]); playRepeat(1 + getRandom(3), [playStrokes, playEdges], interval); playTake(getRandom(3), [postCum, postChastity]); - if (!sessionAborted) { + if (!sessionAborted && !can(CUM)) { addEventIfMissing(CUM, getTime() + (DAY * 2) + getRandom(DAY * 2), PERMIT, CUM); // 2 - 4 days from now } } |