From d7c4cac751574fa3f013cf4222851b682800d1bb Mon Sep 17 00:00:00 2001 From: Jeremy Penner Date: Sun, 31 Mar 2013 14:39:53 -0400 Subject: [PATCH] bugfix --- src/hottub/gs.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hottub/gs.clj b/src/hottub/gs.clj index 29ac7ec..37832ec 100644 --- a/src/hottub/gs.clj +++ b/src/hottub/gs.clj @@ -85,7 +85,7 @@ (q-id-in @*gamestate* indextype query)) (defn q-in [gs indextype query] - (for [id (q-id-in gs indextype query)] (entity id))) + (for [id (q-id-in gs indextype query)] (entity-in gs id))) (defn q [indextype query] (q-in @*gamestate* indextype query))