From 30d7a5e97469a7381709b1e6fb7bce62391e3bfb Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sun, 6 Dec 2020 17:45:39 -0500 Subject: [PATCH] Adds attack log to yourself when you kill yourself (#15055) --- code/game/verbs/suicide.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/verbs/suicide.dm b/code/game/verbs/suicide.dm index 4df9dd832c4..7ce784539ad 100644 --- a/code/game/verbs/suicide.dm +++ b/code/game/verbs/suicide.dm @@ -79,6 +79,7 @@ if(forced || (confirm == "Yes")) suiciding = TRUE + create_log(ATTACK_LOG, "Attempted suicide") var/obj/item/held_item = get_active_hand() if(held_item) var/damagetype = held_item.suicide_act(src)