From 77d3fd81369a9d6f4a5ba2a6f9ccf2665ec0b9c8 Mon Sep 17 00:00:00 2001 From: Brett Williams Date: Thu, 31 Oct 2019 12:27:56 -0300 Subject: [PATCH] jannies get this too --- code/modules/client/verbs/suicide.dm | 4 ++-- code/modules/mob/living/carbon/human/death.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/client/verbs/suicide.dm b/code/modules/client/verbs/suicide.dm index 60564a6d38d..c3189178cc8 100644 --- a/code/modules/client/verbs/suicide.dm +++ b/code/modules/client/verbs/suicide.dm @@ -224,10 +224,10 @@ death(FALSE) /mob/living/proc/suicide_log() - log_attack("[key_name(src)] committed suicide at [AREACOORD(src)] as [src.type].") + log_message("committed suicide as [src.type]", LOG_ATTACK) /mob/living/carbon/human/suicide_log() - log_attack("[key_name(src)] (job: [src.job ? "[src.job]" : "None"]) committed suicide at [AREACOORD(src)].") + log_message("(job: [src.job ? "[src.job]" : "None"]) committed suicide", LOG_ATTACK) /mob/living/proc/canSuicide() switch(stat) diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm index c7e14686637..9f3707aa47a 100644 --- a/code/modules/mob/living/carbon/human/death.dm +++ b/code/modules/mob/living/carbon/human/death.dm @@ -38,7 +38,7 @@ if(SSticker.HasRoundStarted()) SSblackbox.ReportDeath(src) - log_attack("[key_name(src)] has died (BRUTE: [src.getBruteLoss()], BURN: [src.getFireLoss()], TOX: [src.getToxLoss()], OXY: [src.getOxyLoss()], CLONE: [src.getCloneLoss()]) ([AREACOORD(src)])") + log_message("has died (BRUTE: [src.getBruteLoss()], BURN: [src.getFireLoss()], TOX: [src.getToxLoss()], OXY: [src.getOxyLoss()], CLONE: [src.getCloneLoss()])", LOG_ATTACK) if(is_devil(src)) INVOKE_ASYNC(is_devil(src), /datum/antagonist/devil.proc/beginResurrectionCheck, src)