From 7cccd7bd0ff96d7d8393de36f84b3e5ad0699c64 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 31 Dec 2021 05:24:12 +0100 Subject: [PATCH] [MIRROR] Possesing a mob no longer lowercases your ckey in admin messages [MDB IGNORE] (#10357) * Possesing a mob no longer lowercases your ckey in admin messages #63686 * Possesing a mob no longer lowercases your ckey in admin messages Co-authored-by: Seth Scherer --- code/modules/admin/admin.dm | 2 +- code/modules/admin/verbs/debug.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 646a7da1f19..9a58e38085e 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -241,7 +241,7 @@ log_admin("[key_name(usr)] stuffed [frommob.key] into [tomob.name].") SSblackbox.record_feedback("tally", "admin_verb", 1, "Ghost Drag Control") - tomob.ckey = frommob.ckey + tomob.key = frommob.key tomob.client?.init_verbs() qdel(frommob) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 582a45e4fe8..0f74c4700ac 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -173,7 +173,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that var/mob/adminmob = mob if(M.ckey) M.ghostize(FALSE) - M.ckey = ckey + M.key = key init_verbs() if(isobserver(adminmob)) qdel(adminmob)