From aae6b003d90457dfbfa3303496ba007bd774f547 Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Tue, 3 Oct 2023 18:16:43 +0200 Subject: [PATCH] That was fcking easy (#22615) --- code/modules/antagonists/changeling/powers/shriek.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/antagonists/changeling/powers/shriek.dm b/code/modules/antagonists/changeling/powers/shriek.dm index 6d0f8d1c152..0c89c5f106d 100644 --- a/code/modules/antagonists/changeling/powers/shriek.dm +++ b/code/modules/antagonists/changeling/powers/shriek.dm @@ -10,6 +10,8 @@ //A flashy ability, good for crowd control and sowing chaos. /datum/action/changeling/resonant_shriek/sting_action(mob/user) + if(istype(user.loc, /obj/machinery/atmospherics)) + return FALSE for(var/mob/living/M in get_mobs_in_view(4, user)) if(iscarbon(M)) if(ishuman(M)) @@ -44,6 +46,8 @@ //A flashy ability, good for crowd control and sewing chaos. /datum/action/changeling/dissonant_shriek/sting_action(mob/user) + if(istype(user.loc, /obj/machinery/atmospherics)) + return FALSE for(var/obj/machinery/light/L in range(5, usr)) L.on = TRUE L.break_light_tube()