From 539bbbb956362a23c94153288eb8baf765463f34 Mon Sep 17 00:00:00 2001
From: matttheficus <57759731+matttheficus@users.noreply.github.com>
Date: Fri, 1 Sep 2023 17:55:00 -0400
Subject: [PATCH] [s] Holoparasite Can No Longer Manifest in Stealth Boxes
(#21910)
* poof there it is
* oops, what tense is this in?
---
code/_onclick/hud/guardian_hud.dm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/code/_onclick/hud/guardian_hud.dm b/code/_onclick/hud/guardian_hud.dm
index 87764ef344a..d00662f0c76 100644
--- a/code/_onclick/hud/guardian_hud.dm
+++ b/code/_onclick/hud/guardian_hud.dm
@@ -53,6 +53,9 @@
if(istype(summoner_loc, /obj/machinery/atmospherics))
to_chat(G, "You can not manifest while in these pipes!")
return
+ if(istype(summoner_loc, /obj/structure/closet/cardboard/agent))
+ to_chat(G, "You can not manifest while inside an active Stealth Implant!")
+ return
if(G.loc == G.summoner)
G.Manifest()