summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/toy/intro.groovy7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/toy/intro.groovy b/scripts/toy/intro.groovy
index 51ee105..90d0c1a 100644
--- a/scripts/toy/intro.groovy
+++ b/scripts/toy/intro.groovy
@@ -11,7 +11,7 @@
["My rules are simple, do what I say, when I say, and you'll be rewarded... eventually."]]);
showButton("Thank you, ${dommeTitle()}");
present([DRESSED,nTEASE], [
- ["But if you disappointment me, disobey me or disrespect me, then you'll be punished."]]);
+ ["But if you disappoint me, disobey me or disrespect me, then you'll be punished."]]);
showButton("Yes, ${dommeTitle()}");
present([DRESSED,TEASE], [
["I will tease you... and I will torment you..."]]);
@@ -48,6 +48,7 @@
}
save("toy.version", VERSION);
};
- toy.setupInitial();
- return null;
+ return {
+ toy.setupInitial();
+ };
}