From d39897b9ad2ed66b736c1c8dca9694870ba863a0 Mon Sep 17 00:00:00 2001 From: BlackMajor Date: Fri, 18 Oct 2019 23:34:31 +1300 Subject: [PATCH] Update phantomthief.dm --- modular_citadel/code/modules/clothing/glasses/phantomthief.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modular_citadel/code/modules/clothing/glasses/phantomthief.dm b/modular_citadel/code/modules/clothing/glasses/phantomthief.dm index 49eb089afa..1b13ba5dc8 100644 --- a/modular_citadel/code/modules/clothing/glasses/phantomthief.dm +++ b/modular_citadel/code/modules/clothing/glasses/phantomthief.dm @@ -35,6 +35,8 @@ . = ..() if(!istype(user)) return + if(slot != SLOT_GLASSES) + return if(!combattoggle_redir) combattoggle_redir = user.AddComponent(/datum/component/redirect, list(COMSIG_COMBAT_TOGGLED = CALLBACK(src, .proc/injectadrenaline)))