From 86345394abdeebd48647c98c748b0942ad9eaf96 Mon Sep 17 00:00:00 2001 From: oakes Date: Fri, 20 Jun 2014 17:11:37 -0400 Subject: [PATCH] Coerce bundle entities into a vector --- src/play_clj/core_utils.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/play_clj/core_utils.clj b/src/play_clj/core_utils.clj index 20c8d16..e6038bb 100644 --- a/src/play_clj/core_utils.clj +++ b/src/play_clj/core_utils.clj @@ -17,7 +17,7 @@ override the equivalent keys in each entity when being drawn. (assoc (bundle (shape :filled) (shape :line)) :x 100 :y 100)" [& entities] - (BundleEntity. entities)) + (BundleEntity. (vec entities))) (defn bundle? "Returns true if `entity` is a `bundle`."