diff --git a/code/modules/mob/living/simple_animal/friendly/corgi.dm b/code/modules/mob/living/simple_animal/friendly/corgi.dm index d1b469c84fe..98a0bfee740 100644 --- a/code/modules/mob/living/simple_animal/friendly/corgi.dm +++ b/code/modules/mob/living/simple_animal/friendly/corgi.dm @@ -169,6 +169,7 @@ //The objects that corgis can wear on their backs. var/list/allowed_types = list( /obj/item/clothing/suit/armor/vest, + /obj/item/clothing/suit/armor/vest/blueshield, /obj/item/clothing/suit/space/deathsquad, /obj/item/clothing/suit/space/hardsuit/engineering, /obj/item/device/radio, @@ -374,7 +375,7 @@ desc = "That's Definitely Not [real_name]" valid = 1 - if(/obj/item/clothing/head/beret/centcom/officer/navy) + if(/obj/item/clothing/head/beret/centcom/officer, /obj/item/clothing/head/beret/centcom/officer/navy) name = "Blueshield [real_name]" desc = "Will stand by you until the bitter end." emote_see = list("stands with pride.", "growls heroically.") diff --git a/icons/mob/corgi_back.dmi b/icons/mob/corgi_back.dmi index e3ed70343a3..4aec9894ec5 100644 Binary files a/icons/mob/corgi_back.dmi and b/icons/mob/corgi_back.dmi differ