diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-28 13:56:21 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-28 13:56:21 +0000 |
commit | 50a27af317cd5cb756f6218b9fccb64593f70bba (patch) | |
tree | 7dff3fb921e89fdc4836f266d6fe68e0ef6344c9 | |
parent | Only load images for directories with tags file (diff) | |
download | toy-50a27af317cd5cb756f6218b9fccb64593f70bba.zip |
Fix image selector in preStrip
-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 e038a08..17453fa 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -670,7 +670,7 @@ def preStrip = { imageSpec = [DRESSED] -> present(imageSpec, [ ["Clothes off!", "Get naked, slut!"]]); wait(10); - present([DRESSED], [ + present(imageSpec, [ ["All of them off!", "And the rest!", "Keep going."]]); set(NAKED, true); showButtonGT("Naked, mistress", "naked", 60, 5); |