From 4b0b64df6be6fa919b03741517245904c2e20aed Mon Sep 17 00:00:00 2001 From: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> Date: Fri, 5 Aug 2022 06:57:56 -0700 Subject: [PATCH] Fixes admin recipients seeing double pm messages (#68977) --- code/modules/admin/verbs/adminpm.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/adminpm.dm b/code/modules/admin/verbs/adminpm.dm index 07e0bfad116..0abf2ca6f8e 100644 --- a/code/modules/admin/verbs/adminpm.dm +++ b/code/modules/admin/verbs/adminpm.dm @@ -550,8 +550,8 @@ return var/client/recipient = ambiguious_recipient - // The ckey of our recipient - var/recipient_key = recipient?.ckey + // The key of our recipient + var/recipient_key = recipient?.key // Shows the recipient's ckey and the name of any mob it might be possessing var/recipient_name = key_name(recipient) // Shows the recipient's ckey/name embedded inside a clickable link to reply to this message