diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm index 08a44f30d84..b0bdc088371 100644 --- a/code/game/machinery/camera/camera.dm +++ b/code/game/machinery/camera/camera.dm @@ -141,15 +141,15 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/camera/xray, 0) /obj/machinery/camera/examine(mob/user) . = ..() if(isEmpProof(TRUE)) //don't reveal it's upgraded if was done via MALF AI Upgrade Camera Network ability - . += "It has electromagnetic interference shielding installed." + . += span_info("It has electromagnetic interference shielding installed.") else . += span_info("It can be shielded against electromagnetic interference with some plasma.") if(isXRay(TRUE)) //don't reveal it's upgraded if was done via MALF AI Upgrade Camera Network ability - . += "It has an X-ray photodiode installed." + . += span_info("It has an X-ray photodiode installed.") else . += span_info("It can be upgraded with an X-ray photodiode with an analyzer.") if(isMotion()) - . += "It has a proximity sensor installed." + . += span_info("It has a proximity sensor installed.") else . += span_info("It can be upgraded with a proximity sensor.") diff --git a/code/game/machinery/camera/camera_assembly.dm b/code/game/machinery/camera/camera_assembly.dm index 15baccbcf9c..dcc71005d67 100644 --- a/code/game/machinery/camera/camera_assembly.dm +++ b/code/game/machinery/camera/camera_assembly.dm @@ -35,17 +35,17 @@ //upgrade messages var/has_upgrades if(emp_module) - . += "It has electromagnetic interference shielding installed." + . += span_info("It has electromagnetic interference shielding installed.") has_upgrades = TRUE else if(state == STATE_WIRED) . += span_info("It can be shielded against electromagnetic interference with some plasma.") if(xray_module) - . += "It has an X-ray photodiode installed." + . += span_info("It has an X-ray photodiode installed.") has_upgrades = TRUE else if(state == STATE_WIRED) . += span_info("It can be upgraded with an X-ray photodiode with an analyzer.") if(proxy_module) - . += "It has a proximity sensor installed." + . += span_info("It has a proximity sensor installed.") has_upgrades = TRUE else if(state == STATE_WIRED) . += span_info("It can be upgraded with a proximity sensor.")