From 4452022739ca539f1c53980a180bee95a95d2055 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 8 Mar 2023 12:43:17 +0100 Subject: [PATCH] [MIRROR] Corgis now show their ID on examine [MDB IGNORE] (#19701) * Corgis now show their ID on examine (#73662) ## About The Pull Request Lost feature when they were moved to basic mob ## Why It's Good For The Game The intended feature is now back again ! ## Changelog :cl: fix: Corgis show their ID on examine. /:cl: * Corgis now show their ID on examine --------- Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> --- code/modules/mob/living/basic/pets/dog.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/basic/pets/dog.dm b/code/modules/mob/living/basic/pets/dog.dm index b7151a9a6bf..82781d51abf 100644 --- a/code/modules/mob/living/basic/pets/dog.dm +++ b/code/modules/mob/living/basic/pets/dog.dm @@ -84,6 +84,11 @@ /// Is this corgi physically slow due to age, etc? var/is_slow = FALSE +/mob/living/basic/pet/dog/corgi/examine(mob/user) + . = ..() + if(access_card) + . += "There appears to be [icon2html(access_card, user)] \a [access_card] pinned to [p_them()]." + /mob/living/basic/pet/dog/corgi/Destroy() QDEL_NULL(inventory_head) QDEL_NULL(inventory_back)