From 242f214ff5d4e3c0df4687799819c104e7fb1a78 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sat, 10 Dec 2016 16:01:55 -0600 Subject: [PATCH] gameobj: Fix dyn-ref match call The condition for #f was broken, and had no body. --- mudsync/gameobj.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mudsync/gameobj.scm b/mudsync/gameobj.scm index 9046520..20fc291 100644 --- a/mudsync/gameobj.scm +++ b/mudsync/gameobj.scm @@ -365,6 +365,6 @@ By default, this is whether or not the generally-visible flag is set." #:symbol special-symbol) 'val)) ;; if it's false, return nothing - ((#f #f)) + (#f #f) ;; otherwise it's probably an address, return it as-is (_ special-symbol))) -- 2.31.1