diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-06-24 21:24:59 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-06-24 21:24:59 +0100 |
commit | f41ce88e5da25742cdd55d31b1e7de32604e13dc (patch) | |
tree | 8c83c98252db906cbd2d55ef5026e7dc55b43cef /scripts | |
parent | Fix typo (diff) | |
download | toy-f41ce88e5da25742cdd55d31b1e7de32604e13dc.zip |
Fix missing const prefixes
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/toy/orgasmControl.groovy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/toy/orgasmControl.groovy b/scripts/toy/orgasmControl.groovy index 503247b..8568067 100644 --- a/scripts/toy/orgasmControl.groovy +++ b/scripts/toy/orgasmControl.groovy @@ -136,6 +136,7 @@ toy.addActivity("postCum", { toy.postCum() }); toy.addActivity("postPermitCum", { // 2 - 4 days from now - toy.addEventIfMissing(CUM, getTime() + (DAY * 2) + getRandom(DAY * 2), PERMIT, CUM); + toy.addEventIfMissing(toy.CUM, toy.getTime() + (toy.DAY * 2) + toy.getRandom(toy.DAY * 2), + toy.PERMIT, toy.CUM); }); } |