From 970a75fa3ace922285b916bab5e26c80f1c983f9 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 9 Dec 2018 21:06:11 +0000 Subject: Return punish multiple when toy already in that state --- scripts/toy.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/toy.groovy') 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); -- cgit v1.2.3