From 71dc46d4cdaa7e084bbe1488ef348be1a11d2f0e Mon Sep 17 00:00:00 2001 From: Cluwnes Honk Date: Fri, 27 Dec 2013 16:46:00 -0800 Subject: [PATCH] Adds ckey logging to canisters Lets admins see the ckey as well as the name of those who toggle release valves on canisters. --- code/game/machinery/atmoalter/canister.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/machinery/atmoalter/canister.dm b/code/game/machinery/atmoalter/canister.dm index 49e23c55c05..6db3878d187 100644 --- a/code/game/machinery/atmoalter/canister.dm +++ b/code/game/machinery/atmoalter/canister.dm @@ -264,14 +264,14 @@ Release Pressure: - air
" + release_log += "Valve was closed by [usr] ([usr.ckey]), stopping the transfer into the air
" else if (holding) - release_log += "Valve was opened by [usr], starting the transfer into the [holding]
" + release_log += "Valve was opened by [usr] ([usr.ckey]), starting the transfer into the [holding]
" else - release_log += "Valve was opened by [usr], starting the transfer into the air
" + release_log += "Valve was opened by [usr] ([usr.ckey]), starting the transfer into the air
" valve_open = !valve_open if (href_list["remove_tank"])