diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-06-19 16:25:30 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-06-19 16:25:30 +0100 |
commit | 560a516928dedb7aa806a07d2a5ef0d34df0dd79 (patch) | |
tree | 17af9e6c1685bfb9d4831260a3cecdc16c225b15 /scripts | |
parent | Backport typo fixes from mystery contributor (diff) | |
download | toy-pub-4.0.2.zip |
Fix the intro code!pub-4.0.2
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/toy/intro.groovy | 7 |
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(); + }; } |