Switch to using the <- syntax for everything
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 11 Dec 2016 17:05:07 +0000 (11:05 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 11 Dec 2016 17:05:07 +0000 (11:05 -0600)
mudsync/gameobj.scm
mudsync/player.scm

index 20fc291340198c25e12ad2c718c985e55ad35c42..334f4397593054d71c744ee062e40c850909be34 100644 (file)
 ;; Kind of a useful utility, maybe?
 (define (simple-slot-getter slot)
   (lambda (actor message)
-    (reply-message actor message
-                   #:val (slot-ref actor slot))))
+    (<-reply actor message
+             #:val (slot-ref actor slot))))
 
 (define (gameobj-replace-step-occupants actor replace-reply)
   (define occupants
index 172b81072b4e85e98fcf8536f91be5a9a1dccae3..a07c141fd080456615777b21ae85407df0acd937 100644 (file)
@@ -89,7 +89,7 @@
 
   (match winner
     ((cmd-action winner-id message-args)
-     (apply send-message player winner-id cmd-action message-args))
+     (apply <- player winner-id cmd-action message-args))
     (#f
      (<- player (gameobj-gm player) 'write-home
          #:text "Huh?\n"))))