diff --git a/code/modules/clothing/under/jobs/security.dm b/code/modules/clothing/under/jobs/security.dm index 52f58e50379..47a5323e34c 100644 --- a/code/modules/clothing/under/jobs/security.dm +++ b/code/modules/clothing/under/jobs/security.dm @@ -40,12 +40,12 @@ . = ..() if(!rolled_sleeves && Adjacent(user)) //can't see the comp if you've taken the sleeves off, or if you're not adjacent - . += "The minicomp reports that the current station time is [stationtime2text()] and that it is [stationdate2text()]." + . += span_notice("The minicomp reports that the current station time is [stationtime2text()] and that it is [stationdate2text()].") var/TB = src.loc.loc if(istype(TB, /turf/simulated)) //no point returning atmospheric data from unsimulated tiles (they don't track pressure anyway, only temperature) var/turf/simulated/T = TB var/datum/gas_mixture/env = T.return_air() - . += "The minicomp reports the current atmospheric pressure: [env.return_pressure()]kPa, and temperature: [env.temperature]K " + . += span_notice("The minicomp reports the current atmospheric pressure: [env.return_pressure()]kPa, and temperature: [env.temperature]K") /obj/item/clothing/under/rank/security/modern name = "modernized security officer's jumpsuit"