diff --git a/code/game/jobs/job/medical.dm b/code/game/jobs/job/medical.dm index 6440eae1d4e..aaf1a61a2a1 100644 --- a/code/game/jobs/job/medical.dm +++ b/code/game/jobs/job/medical.dm @@ -121,10 +121,7 @@ switch(H.mind.role_alt_title) if("Surgeon") uniform = /obj/item/clothing/under/rank/medical/blue - if(prob(50)) - head = /obj/item/clothing/head/headmirror - else - head = /obj/item/clothing/head/surgery/blue + head = /obj/item/clothing/head/surgery/blue if("Medical Doctor") uniform = /obj/item/clothing/under/rank/medical if("Nurse") diff --git a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm index 645d27a1815..7de956a2a71 100644 --- a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm +++ b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm @@ -414,6 +414,7 @@ new /obj/item/clothing/under/medigown(src) new /obj/item/clothing/under/medigown(src) new /obj/item/clothing/head/headmirror(src) + new /obj/item/clothing/head/headmirror(src) /obj/structure/closet/wardrobe/grey diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index 6263c245820..ba1b74aad66 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -6,6 +6,7 @@ * Pumpkin head * Kitty ears * Cardborg Disguise + * Head Mirror */ /* @@ -262,6 +263,3 @@ "Grey" = 'icons/mob/species/grey/head.dmi' ) -/obj/item/clothing/head/headmirror/IsReflect() - if(prob(15)) //Small chance to reflect energy projectiles if held on hands. - return TRUE