From 6e5718b8ce789d3e59a76c59a96f048a3e4efa31 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Mon, 22 May 2023 16:06:40 -0400 Subject: [PATCH] Update guardian.dm (#21058) --- code/_onclick/hud/guardian.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/_onclick/hud/guardian.dm b/code/_onclick/hud/guardian.dm index 6c9e95f457e..87764ef344a 100644 --- a/code/_onclick/hud/guardian.dm +++ b/code/_onclick/hud/guardian.dm @@ -49,6 +49,10 @@ /obj/screen/guardian/Manifest/Click() if(isguardian(usr)) var/mob/living/simple_animal/hostile/guardian/G = usr + var/summoner_loc = G.summoner.loc + if(istype(summoner_loc, /obj/machinery/atmospherics)) + to_chat(G, "You can not manifest while in these pipes!") + return if(G.loc == G.summoner) G.Manifest()