From 9d62cb9b90ec936ecb3f3ea798993ba8a6ae2eb7 Mon Sep 17 00:00:00 2001 From: silencer-pl <103842328+silencer-pl@users.noreply.github.com> Date: Thu, 4 Jul 2024 10:32:13 -0400 Subject: [PATCH] Update master_items.dm blinking hotfix --- code/modules/salvage/master_items.dm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/code/modules/salvage/master_items.dm b/code/modules/salvage/master_items.dm index 8605b794ee..a3a2f4b2c9 100644 --- a/code/modules/salvage/master_items.dm +++ b/code/modules/salvage/master_items.dm @@ -289,8 +289,15 @@ qdel(src) return +/obj/structure/salvage/proc/useblink() + var/current_color = color + color = "#acacac" + sleep(3) + color = current_color + /obj/structure/salvage/proc/salvage_process_decon_generate_av(tool = null) if(tool == null) return + INVOKE_ASYNC(src, TYPE_PROC_REF(/obj/structure/salvage/,useblink)) var/av_to_play = tool switch(av_to_play) if(TRAIT_TOOL_SCREWDRIVER) @@ -597,8 +604,15 @@ salvage_tiles_recycled = 1 return +/turf/open/salvage/proc/useblink() + var/current_color = color + color = "#acacac" + sleep(3) + color = current_color + /turf/open/salvage/proc/salvage_process_decon_generate_av(tool = null) if(tool == null) return + INVOKE_ASYNC(src, TYPE_PROC_REF(/turf/open/salvage/,useblink)) var/av_to_play = tool switch(av_to_play) if(TRAIT_TOOL_SCREWDRIVER)