summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2018-12-18 19:51:28 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2018-12-18 19:51:28 +0000
commit13bd9d6cd859be4723dd1982d7ff0bff63608403 (patch)
tree775b4d7105192f38f61f794620f6c1bd24b866ed
parentAdjust flow to improve test run-ability (again) (diff)
downloadtoy-13bd9d6cd859be4723dd1982d7ff0bff63608403.zip
Remove weird loopy choice thing in preStrip
-rw-r--r--scripts/toy.groovy23
1 files changed, 6 insertions, 17 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy
index 7b13571..3b69d97 100644
--- a/scripts/toy.groovy
+++ b/scripts/toy.groovy
@@ -660,23 +660,12 @@ def preStrip = { imageSpec = [DRESSED] ->
["All of them off!", "And the rest!", "Keep going."]]);
set(NAKED, true);
showButtonGT("Naked, mistress", "naked", 60, 5);
- (getRandom(2) + 1).times {
- switch (getRandom(1)) {
- case 0:
- present(null, [
- ["Stand up straight,", "On your feet,"],
- ["hands behind your head,", "arms up,", "hands high up,"],
- ["let me see you properly.", "let's see what we have.", "I want a good view."]]);
- break;
- case 1:
- present(null, [
- ["Very good. Now...", "I see..."],
- ["on your knees before me,", "kneel,"],
- ["don't move those hands.", "hands still."]]);
- break;
- }
- wait(10);
- };
+ present(null, [
+ ["Very good. Now...", "I see..."],
+ ["on your knees before me,", "kneel,", "stand up straight,", "on your feet,"],
+ ["hands behind your head,", "arms up,", "hands high up,"],
+ ["let me see you properly.", "let's see what we have.", "I want a good view."]]);
+ wait(10);
return 1.1;
};