summaryrefslogtreecommitdiff
path: root/sly/actor.scm
diff options
context:
space:
mode:
Diffstat (limited to 'sly/actor.scm')
-rw-r--r--sly/actor.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/sly/actor.scm b/sly/actor.scm
index b63a66d..0b1c087 100644
--- a/sly/actor.scm
+++ b/sly/actor.scm
@@ -125,7 +125,8 @@ as an effect on the world, and do not change the actor itself."
(lambda args
(lambda (world effects object)
(values #f
- (list (lambda (world) (apply proc world object args)))
+ (cons (lambda (world) (apply proc world object args))
+ effects)
object))))
(define (idle world effects object)