diff --git a/code/game/objects/structures/crates_lockers/closets/job_closets.dm b/code/game/objects/structures/crates_lockers/closets/job_closets.dm index 4ac722a6719..2d5bd7f435f 100644 --- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm @@ -252,6 +252,8 @@ /obj/structure/closet/wardrobe/robotics_black/New() ..() contents = list() + new /obj/item/clothing/glasses/hud/diagnostic(src) + new /obj/item/clothing/glasses/hud/diagnostic(src) new /obj/item/clothing/under/rank/roboticist(src) new /obj/item/clothing/under/rank/roboticist(src) new /obj/item/clothing/suit/toggle/labcoat(src) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index 4eed38fb5a7..b1ae42ee573 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -289,6 +289,7 @@ datum/design/diagnostic_hud build_type = PROTOLATHE materials = list("$metal" = 50, "$glass" = 50) build_path = /obj/item/clothing/glasses/hud/diagnostic + category = list("Equipment") datum/design/diagnostic_hud_night name = "Night Vision Diagnostic HUD" @@ -298,6 +299,7 @@ datum/design/diagnostic_hud_night build_type = PROTOLATHE materials = list("$metal" = 200, "$glass" = 200, "$uranium" = 1000, "$plasma" = 300) build_path = /obj/item/clothing/glasses/hud/diagnostic/night + category = list("Equipment") ///////////////////////////////////////// //////////////////Test/////////////////// diff --git a/html/changelogs/Gun_Hog-DiagHUDs.yml b/html/changelogs/Gun_Hog-DiagHUDs.yml new file mode 100644 index 00000000000..01d263c29d8 --- /dev/null +++ b/html/changelogs/Gun_Hog-DiagHUDs.yml @@ -0,0 +1,11 @@ + +# Your name. +author: Gun Hog + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + + +changes: + - rscadd: "Added Diagnostic HUDs! They can be used to view the health and cell status of borgs and mechs. Silicons have them built in, Roboticists get two in their locker, and the RD's hardsuit has one built in." +#I lost the original, IC changelog, so I am throwing this together instead. \ No newline at end of file diff --git a/icons/mob/eyes.dmi b/icons/mob/eyes.dmi index 6ac5175fc07..b8f84216bd1 100644 Binary files a/icons/mob/eyes.dmi and b/icons/mob/eyes.dmi differ