summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Shangreaux <grant@unabridgedsoftware.com>2022-01-30 20:41:15 -0600
committerGrant Shangreaux <grant@unabridgedsoftware.com>2022-01-30 20:41:15 -0600
commitbd53520fb30fdcd366303fdd1032be9ebb255817 (patch)
treeb2f02aa093b8af8f58e974c0b1d9fcdf0c056785
parent2b981fc945d9beded27b0ecff182f70c92c79b32 (diff)
Clean: mafia-eye-contact? method -> defun
-rw-r--r--mafia.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/mafia.org b/mafia.org
index 8313615..dfb3187 100644
--- a/mafia.org
+++ b/mafia.org
@@ -227,7 +227,7 @@ they're being watched.
#+name: eye-contact?
#+begin_src emacs-lisp
- (cl-defmethod mafia-eye-contact? (a b)
+ (defun mafia-eye-contact? (a b)
"Given two `mafia-actor's, returns t if they are eachother's current target."
(and (equal (slot-value a 'target) b)
(equal (slot-value b 'target) a)))