From 7219c749ff9bec14f0dc0e69d739da8281b30d71 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Wed, 1 Feb 2017 15:32:20 -0600 Subject: [PATCH] wait to inject each object before we inject the next one --- mudsync/run-game.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mudsync/run-game.scm b/mudsync/run-game.scm index 0fed48d..c9d1f42 100644 --- a/mudsync/run-game.scm +++ b/mudsync/run-game.scm @@ -69,9 +69,9 @@ (while (not (q-empty? %inject-queue)) (match (deq! %inject-queue) ((gameobj-spec . special-symbol) - (<- (.gm injector) 'inject-special! - #:special-symbol special-symbol - #:gameobj-spec gameobj-spec))))) + (<-wait (.gm injector) 'inject-special! + #:special-symbol special-symbol + #:gameobj-spec gameobj-spec))))) ;;; Game running stuff -- 2.31.1