From: Christopher Allan Webber Date: Thu, 26 Jan 2017 21:52:53 +0000 (-0600) Subject: Don't tell ourselves what we're doing X-Git-Tag: fosdem-2017~73 X-Git-Url: https://jxself.org/git/?p=mudsync.git;a=commitdiff_plain;h=9efc11b393ef6d51d6aacc87d58617c1822e6a06;ds=sidebyside Don't tell ourselves what we're doing --- 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)))))