summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2018-12-09 21:06:11 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2018-12-09 21:06:11 +0000
commit970a75fa3ace922285b916bab5e26c80f1c983f9 (patch)
tree67c27e41539bfb535cfc4cd8fa54886999accbaa
parentFix permit cum and add event (diff)
downloadtoy-970a75fa3ace922285b916bab5e26c80f1c983f9.zip
Return punish multiple when toy already in that state
-rw-r--r--scripts/toy.groovy6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy
index fd12703..ce07783 100644
--- a/scripts/toy.groovy
+++ b/scripts/toy.groovy
@@ -517,7 +517,7 @@ def preEdge = {
wait(getRandom(5) + 5);
};
def preGag = {
- if (is(GAGGED)) return;
+ if (is(GAGGED)) return 1.2;
if (!has(BALLGAG)) return;
present([DRESSED], [
["Go fetch your gag, toy...", "Bring me your gag, toy..."],
@@ -565,7 +565,7 @@ def preClamps = {
return 1.8;
};
def preCollar = {
- if (is(COLLARED)) return;
+ if (is(COLLARED)) return 1.1;
if (!has(COLLAR)) return;
present([DRESSED], [
["You look underdressed, toy.", "A toy without a collar doesn't look right."],
@@ -579,7 +579,7 @@ def preCollar = {
return 1.1;
};
def preStrip = { imageSpec = [DRESSED] ->
- if (is(NAKED)) return;
+ if (is(NAKED)) return 1.1;
present(imageSpec, [
["Clothes off!", "Get naked, slut!"]]);
wait(10);