From da8fdc070b23e671d1f7d618fe3063e0b5e56474 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 9 Sep 2023 03:37:55 +0100 Subject: [PATCH] logging --- code/game/objects/structures/pipes/vents/vents.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/structures/pipes/vents/vents.dm b/code/game/objects/structures/pipes/vents/vents.dm index b830097eaf1c..298fbc57f4ad 100644 --- a/code/game/objects/structures/pipes/vents/vents.dm +++ b/code/game/objects/structures/pipes/vents/vents.dm @@ -150,6 +150,7 @@ var/confirm = alert(user, "Confirm gas setup. \n\nGas: '[gas_choice]'\nRadius: '[radius_choice]'\nWarn Time: '[warn_choice / 10] seconds' \n\n Is this correct?", "Confirmation", "Yes", "No") if(confirm != "Yes") return FALSE + log_admin("[key_name(user)] released gas (Gas: [gas_choice], Radius: [radius_choice], Delay: [warn_choice]) from [name] at X[x], Y[y], Z[z].") create_gas(gas_choice, radius_choice, warn_choice) return TRUE