summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);