diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-11-29 20:50:10 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-11-29 20:50:10 +0000 |
commit | fe42f0dbbca4233ce6b94e57426ebac83ecb703c (patch) | |
tree | f10c337c35c97d4b5cd6303d82f34077705a3d53 /scripts/toy.groovy | |
parent | Add tease tag to some crop images (diff) | |
download | toy-fe42f0dbbca4233ce6b94e57426ebac83ecb703c.zip |
Add has and likes to status
Diffstat (limited to 'scripts/toy.groovy')
-rw-r--r-- | scripts/toy.groovy | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy index 97432de..5ec2b22 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -643,6 +643,18 @@ def setupShowState = { return "$it: $v\n".capitalize() }.join()); showButton("OK"); + show( + [BALLGAG, COLLAR, CLAMPS, CHASTITY].collect { + def v = has(it); + return "$it: $v\n".capitalize() + }.join()); + showButton("OK"); + show( + [BONDAGE, CBT, CHORES, PAIN].collect { + def v = likes(it); + return "$it: $v\n".capitalize() + }.join()); + showButton("OK"); }; def setupShowCalendar = { show( |