diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-09 21:06:11 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-09 21:06:11 +0000 |
commit | 970a75fa3ace922285b916bab5e26c80f1c983f9 (patch) | |
tree | 67c27e41539bfb535cfc4cd8fa54886999accbaa /scripts/toy.groovy | |
parent | Fix permit cum and add event (diff) | |
download | toy-970a75fa3ace922285b916bab5e26c80f1c983f9.zip |
Return punish multiple when toy already in that state
Diffstat (limited to 'scripts/toy.groovy')
-rw-r--r-- | scripts/toy.groovy | 6 |
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); |