summaryrefslogtreecommitdiff
path: root/scripts/toy.groovy
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/toy.groovy')
-rw-r--r--scripts/toy.groovy3
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy
index 8ad391b..93d231b 100644
--- a/scripts/toy.groovy
+++ b/scripts/toy.groovy
@@ -392,9 +392,6 @@ return new Object() {
def opts = requestables.values().toList().findAll {
it -> !it.cond || it.cond()
};
- TOYTOYS.findAll { stateIs(it) }.each {
- opts.push([ lbl: "May I be un-$it".toString(), act: { requestRelease() }, arg: it ]);
- };
opts.push([ lbl: "Back", act: null ]);
def opt = getSelectedValue(stateIs("DEBUG") ? DOMME : "Yes, toy?", opts.collect { it.lbl });
def act = opts[opt].act;