From 9efc11b393ef6d51d6aacc87d58617c1822e6a06 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 26 Jan 2017 15:52:53 -0600 Subject: [PATCH] Don't tell ourselves what we're doing --- mudsync/gameobj.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mudsync/gameobj.scm b/mudsync/gameobj.scm index c5f1648..f14babe 100644 --- a/mudsync/gameobj.scm +++ b/mudsync/gameobj.scm @@ -533,7 +533,8 @@ By default, this is whether or not the generally-visible flag is set." ,our-name ".")) (<- player-loc 'tell-room #:text `(,player-name " takes " ,thing-to-take-name " from " - ,our-name ".")))))) + ,our-name ".") + #:exclude player))))) (define* (cmd-put-in gameobj message #:key direct-obj indir-obj preposition) @@ -596,4 +597,5 @@ By default, this is whether or not the generally-visible flag is set." ,our-name ".")) (<- player-loc 'tell-room #:text `(,player-name " puts " ,this-thing-name " in " - ,our-name ".")))))) + ,our-name ".") + #:exclude player))))) -- 2.31.1