From 402a495b1adb7bbb8f1af0eeb1187c72e5d6d9e9 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Sat, 4 Aug 2018 01:29:21 -0400 Subject: [PATCH] Corrects box agent timer not getting properly reset --- code/game/objects/items/implants/implant_stealth.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/implants/implant_stealth.dm b/code/game/objects/items/implants/implant_stealth.dm index 64c8b619c12..b3e9f242065 100644 --- a/code/game/objects/items/implants/implant_stealth.dm +++ b/code/game/objects/items/implants/implant_stealth.dm @@ -28,7 +28,7 @@ /obj/structure/closet/cardboard/agent/proc/reveal() alpha = 255 - addtimer(CALLBACK(src, .proc/go_invisible), 10, TIMER_UNIQUE) + addtimer(CALLBACK(src, .proc/go_invisible), 10, TIMER_OVERRIDE|TIMER_UNIQUE) /obj/structure/closet/cardboard/agent/Bump(atom/movable/A) . = ..()