diff --git a/code/game/machinery/computer/crew.dm b/code/game/machinery/computer/crew.dm index 29bc2eb61aa..a9b6a18c8dd 100644 --- a/code/game/machinery/computer/crew.dm +++ b/code/game/machinery/computer/crew.dm @@ -45,7 +45,7 @@ "name", "job", "is_robot", //SKYRAT EDIT ADDITION - Displaying robotic species Icon - "is_dnr", //SKYRAT EDIT ADDITION - Displays DNR status + "is_dnr", //BUBBERSTATION EDIT ADDITION - Displays DNR status "life_status", "suffocation", "toxin", @@ -262,11 +262,11 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new) entry["is_robot"] = TRUE // SKYRAT EDIT END - // SKYRAT EDIT BEGIN: Add DNR status + // BUBBERSTATION EDIT BEGIN: Add DNR status // If sensors are above living tracking, set DNR state if (sensor_mode >= SENSOR_LIVING) entry["is_dnr"] = HAS_TRAIT(tracked_living_mob, TRAIT_DNR) - // SKYRAT EDIT END + // BUBBERSTATION EDIT END // Binary living/dead status if (sensor_mode >= SENSOR_LIVING)