From 83d1e845bba6038bd4f355caafb1a4fd220e1ea2 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 8 Apr 2020 15:10:13 -0400 Subject: [PATCH] Fixes deadringer decloaking --- code/modules/artifice/deadringer.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/artifice/deadringer.dm b/code/modules/artifice/deadringer.dm index 3e95152528..0906eda63e 100644 --- a/code/modules/artifice/deadringer.dm +++ b/code/modules/artifice/deadringer.dm @@ -19,13 +19,13 @@ START_PROCESSING(SSobj, src) /obj/item/weapon/deadringer/Destroy() //just in case some smartass tries to stay invisible by destroying the watch - uncloak() + reveal() STOP_PROCESSING(SSobj, src) ..() /obj/item/weapon/deadringer/dropped() if(timer > 20) - uncloak() + reveal() watchowner = null return