summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--images/toy/ancilla/domme.groovy4
-rw-r--r--scripts/toy.groovy4
2 files changed, 4 insertions, 4 deletions
diff --git a/images/toy/ancilla/domme.groovy b/images/toy/ancilla/domme.groovy
index ec954aa..e957bdb 100644
--- a/images/toy/ancilla/domme.groovy
+++ b/images/toy/ancilla/domme.groovy
@@ -58,12 +58,12 @@
], [
select: 'repeat',
number: 'toy.randRange(1, 2 + ((toy.prop.punishment ?: 0) / 100))',
- activities: [ 'playKneel', 'playCbt', 'playClamps', 'playNothing' ],
+ activities: [ 'playKneel', 'playBeatBalls', 'playClamps', 'playNothing' ],
use: 'punishApply'
], [
select: 'take',
number: 'toy.randRange(1, 2 + ((toy.prop.punishment ?: 0) / 100))',
- activities: [ 'playBondage', 'playCbt', 'playClamps' ],
+ activities: [ 'playBondage', 'playBeatBalls', 'playClamps' ],
use: 'punishApply'
]
]
diff --git a/scripts/toy.groovy b/scripts/toy.groovy
index fdcc10f..08c0e73 100644
--- a/scripts/toy.groovy
+++ b/scripts/toy.groovy
@@ -837,7 +837,7 @@ def playNothing = {
wait(getRandom(10) + 10);
};
};
-def playCbt = {
+def playBeatBalls = {
final BEATS = [
// bpm:30, len:60 ],
[ bpm:90, len:45 ],
@@ -1221,7 +1221,7 @@ def sessionPlay = {
'playStrokes': playStrokes,
'playEdges': playEdges,
'playKneel': playKneel,
- 'playCbt': playCbt,
+ 'playBeatBalls': playBeatBalls,
'playClamps': playClamps,
'playNothing': playNothing,
'playBondage': playBondage,