From a9f5b99510b5d4a7fbb1a5e9703376a5ae3d7172 Mon Sep 17 00:00:00 2001 From: Sishen Date: Wed, 3 Jul 2019 16:55:14 -0400 Subject: [PATCH] Update thermomachine.dm --- .../machinery/components/unary_devices/thermomachine.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm b/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm index 47261e406e..8464a5881e 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm @@ -171,6 +171,7 @@ return on = !on update_icon() + investigate_log("was turned [on ? "on" : "off"] by [key_name(usr)]", INVESTIGATE_ATMOS) /obj/machinery/atmospherics/components/unary/thermomachine/freezer name = "freezer" @@ -208,7 +209,8 @@ /obj/machinery/atmospherics/components/unary/thermomachine/freezer/AltClick(mob/living/user) if(!istype(user) || !user.canUseTopic(src, BE_CLOSE)) return - target_temperature = min_temperature + target_temperature = min_temperature + investigate_log("was set to [target_temperature] K by [key_name(usr)]", INVESTIGATE_ATMOS) /obj/machinery/atmospherics/components/unary/thermomachine/heater name = "heater" @@ -235,3 +237,4 @@ if(!istype(user) || !user.canUseTopic(src, BE_CLOSE)) return target_temperature = max_temperature + investigate_log("was set to [target_temperature] K by [key_name(usr)]", INVESTIGATE_ATMOS)