From 116c4e70045d7cabe70fad86c65b7e3c7a2508d8 Mon Sep 17 00:00:00 2001 From: theo-3 <85434590+theo-3@users.noreply.github.com> Date: Tue, 6 Jul 2021 03:48:27 +0300 Subject: [PATCH 1/2] Make cryo start with auto eject --- .../atmospherics/machinery/components/unary_devices/cryo.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm index 01d18336b5c..156a92ce37d 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm @@ -18,7 +18,7 @@ var/mob/living/carbon/occupant = null var/obj/item/reagent_containers/glass/beaker = null /// Holds two bitflags, AUTO_EJECT_DEAD and AUTO_EJECT_HEALTHY. Used to determine if the cryo cell will auto-eject dead and/or completely health patients. - var/auto_eject_prefs = NONE + var/auto_eject_prefs = AUTO_EJECT_HEALTHY | AUTO_EJECT_DEAD var/next_trans = 0 var/current_heat_capacity = 50 From e4f4dc51d4a8a2b1171abc48a15f4aacb231f608 Mon Sep 17 00:00:00 2001 From: theo-3 <85434590+theo-3@users.noreply.github.com> Date: Mon, 12 Jul 2021 19:07:33 +0300 Subject: [PATCH 2/2] Fix typo --- .../atmospherics/machinery/components/unary_devices/cryo.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm index 156a92ce37d..5acb9f9cc73 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm @@ -17,7 +17,7 @@ var/temperature_archived var/mob/living/carbon/occupant = null var/obj/item/reagent_containers/glass/beaker = null - /// Holds two bitflags, AUTO_EJECT_DEAD and AUTO_EJECT_HEALTHY. Used to determine if the cryo cell will auto-eject dead and/or completely health patients. + /// Holds two bitflags, AUTO_EJECT_DEAD and AUTO_EJECT_HEALTHY. Used to determine if the cryo cell will auto-eject dead and/or completely healthy patients. var/auto_eject_prefs = AUTO_EJECT_HEALTHY | AUTO_EJECT_DEAD var/next_trans = 0