From acd9bcfa2971546b0f5a8e6c7d28d35be587c398 Mon Sep 17 00:00:00 2001 From: Kyep Date: Sat, 26 Sep 2020 19:53:48 -0700 Subject: [PATCH] Fixes #13269 - aghost makes your inventory invisible --- code/modules/admin/admin_verbs.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 0802e6e8b1a..f9b2d6c0497 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -331,6 +331,9 @@ GLOBAL_LIST_INIT(admin_verbs_ticket, list( ghost.reenter_corpse() log_admin("[key_name(usr)] re-entered their body") feedback_add_details("admin_verb","P") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + if(ishuman(mob)) + var/mob/living/carbon/human/H = mob + H.regenerate_icons() // workaround for #13269 else if(isnewplayer(mob)) to_chat(src, "Error: Aghost: Can't admin-ghost whilst in the lobby. Join or observe first.") else