diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-13 23:13:26 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-12-13 23:13:26 +0000 |
commit | a209a7ca047e0e6bcd5338bc79c153414c3fc344 (patch) | |
tree | f1a64cc22c977fcaa5bf2d8929446850f7224501 | |
parent | Revoke cum permission for bad toy (diff) | |
download | toy-a209a7ca047e0e6bcd5338bc79c153414c3fc344.zip |
Don't require crop for confession, just mean
-rw-r--r-- | scripts/toy.groovy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy index 095084e..251719d 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -1203,7 +1203,7 @@ def confess = { // 5 points just for feeling the need to confess def op = getPunish(); adjustPunish(5); - dress([[DRESSED,nTEASE], [MEAN,CROP]]); + dress([[DRESSED,nTEASE], [MEAN]]); while (true) { present([DRESSED, nTEASE], [ ["I'm not going to like this, am I?", "There is no way this ends well for you."], @@ -1224,7 +1224,7 @@ def confess = { } // If sufficient points accrued, punish immediately.. with a bonus if (getPunish() > 150 + op) { - present([MEAN,CROP], [ + present([MEAN], [ ["I'm very disappointed in you.", "You've been a very bad toy!"], ["Immediate punishment!", "So you will suffer... right now!"]]); adjustPunish(100); |