From cd48ae15c2fd3cdcd849aac8ce51bf511e4b62d2 Mon Sep 17 00:00:00 2001 From: Zonespace <41448081+Zonespace27@users.noreply.github.com> Date: Wed, 4 May 2022 20:21:02 -0700 Subject: [PATCH] [s] Necropolis tendril destruction is now logged (#13326) * annoyance * done * Update code/modules/mapfluff/ruins/objects_and_mobs/ash_walker_den.dm --- .../mapfluff/ruins/objects_and_mobs/ash_walker_den.dm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/code/modules/mapfluff/ruins/objects_and_mobs/ash_walker_den.dm b/code/modules/mapfluff/ruins/objects_and_mobs/ash_walker_den.dm index e911ad49a98..fab7fa7837f 100644 --- a/code/modules/mapfluff/ruins/objects_and_mobs/ash_walker_den.dm +++ b/code/modules/mapfluff/ruins/objects_and_mobs/ash_walker_den.dm @@ -33,6 +33,16 @@ ashies = null QDEL_NULL(linked_objective) STOP_PROCESSING(SSprocessing, src) + //SKYRAT EDIT START + var/compiled_string = "The [src] has been destroyed at [loc_name(src.loc)], nearest mobs are " + var/found_anyone = FALSE + for(var/mob/living/carbon/carbons_nearby in range(7)) + compiled_string += "[key_name(carbons_nearby)]," + found_anyone = TRUE + if(!found_anyone) + compiled_string += "nobody." + log_game(compiled_string) + //SKYRAT EDIT END return ..() /obj/structure/lavaland/ash_walker/deconstruct(disassembled)