mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-12 08:36:00 +01:00
[s] Necropolis tendril destruction is now logged (#13326)
* annoyance * done * Update code/modules/mapfluff/ruins/objects_and_mobs/ash_walker_den.dm
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user