From 73531a77e81c2f12ea1da6bb1c2f2e3e5c1fa716 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Sun, 20 Mar 2022 10:56:04 -0800 Subject: [PATCH] Merge pull request #8430 from Verkister/patch-86 Fixes holodeck landmarks not clearing themselves --- code/modules/holodeck/HolodeckControl.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/holodeck/HolodeckControl.dm b/code/modules/holodeck/HolodeckControl.dm index 309971d5e24..9817650461b 100644 --- a/code/modules/holodeck/HolodeckControl.dm +++ b/code/modules/holodeck/HolodeckControl.dm @@ -317,6 +317,9 @@ for(var/obj/effect/decal/cleanable/blood/B in linkedholodeck) qdel(B) + for(var/obj/effect/landmark/L in linkedholodeck) + qdel(L) + holographic_objs = A.copy_contents_to(linkedholodeck , 1) for(var/obj/holo_obj in holographic_objs) holo_obj.alpha *= 0.8 //give holodeck objs a slight transparency