Don't tell ourselves what we're doing
authorChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 26 Jan 2017 21:52:53 +0000 (15:52 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 26 Jan 2017 21:52:53 +0000 (15:52 -0600)
mudsync/gameobj.scm

index c5f1648e12209ecf6340da428fb35b3508bd562a..f14babe0b62d1c592016c3722391233a14b71869 100644 (file)
@@ -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 "."))
       (<- 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)
 
 (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 "."))
       (<- player-loc 'tell-room
           #:text `(,player-name " puts " ,this-thing-name " in "
-                                ,our-name "."))))))
+                                ,our-name ".")
+          #:exclude player)))))