diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-12 16:54:34 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-12 16:54:34 +0000 |
commit | d7e5baec31eb829269ed8235c21ae5bffb4fea6d (patch) | |
tree | c4d0f4ae0e572a58a08a141cc30d67e6c1bd243d /scripts | |
parent | Add BG event catch up (diff) | |
download | toy-d7e5baec31eb829269ed8235c21ae5bffb4fea6d.zip |
Ensure slow beat stopped
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/toy.groovy | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy index 1555b51..fe6c194 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -439,7 +439,10 @@ def strokes = { amount, imageSpec -> ["Careful now...", "No accidents..."], ["slow it down...", "slowly now..."]]); playBackgroundSound("toy/30bpm.mp3"); - if (mightCum(getRandom(20) + 5)) return; + if (mightCum(getRandom(20) + 5)) { + playBackgroundSound(null); + return; + } case 2: switch(getSelectedValue("Would you like to cum, toy?", [ gagText("Please, mistress, may I cum!?", "yes"), @@ -462,7 +465,11 @@ def strokes = { amount, imageSpec -> adjustPunish(-5); break; } - if (mightCum(getRandom(8) + 5)) return; + if (mightCum(getRandom(8) + 5)) { + playBackgroundSound(null); + return; + } + playBackgroundSound(null); } present(imageSpec, [ ["Back to stroking, toy...", "Get to it again...."], |