From 142ba8a8b5bf9d5d84eabb31c5950df5bfa9ec56 Mon Sep 17 00:00:00 2001
From: SkyratBot <59378654+SkyratBot@users.noreply.github.com>
Date: Fri, 30 Oct 2020 03:35:01 +0100
Subject: [PATCH] [MIRROR] Improves stripping logs (#1517)
* logs the start of stripping along with the end, should make resolving theft arguments easier (#54662)
* Improves stripping logs
Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com>
---
code/modules/mob/living/living.dm | 1 +
1 file changed, 1 insertion(+)
diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm
index b3980ebea37..3b7a84ac8a2 100644
--- a/code/modules/mob/living/living.dm
+++ b/code/modules/mob/living/living.dm
@@ -947,6 +947,7 @@
who.visible_message("[src] tries to remove [who]'s [what.name].", \
"[src] tries to remove your [what.name].", null, null, src)
to_chat(src, "You try to remove [who]'s [what.name]...")
+ log_combat(src, who, "started stripping [what] off")
what.add_fingerprint(src)
if(do_mob(src, who, what.strip_delay))
if(what && Adjacent(who))