From 9d76cfee8ed19020d16289830982fa40a2c7fa5c Mon Sep 17 00:00:00 2001 From: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Date: Wed, 24 Jun 2026 18:22:07 -0400 Subject: [PATCH] Fixes non-antags being able to exfiltrate (#32097) * Fixes non-antags being able to exfiltrate * Update code/modules/antagonists/_common/antag_exfiltration.dm Co-authored-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> --------- Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Co-authored-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> --- code/modules/antagonists/_common/antag_exfiltration.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/antagonists/_common/antag_exfiltration.dm b/code/modules/antagonists/_common/antag_exfiltration.dm index a82f81b77fd..c30cdf58f81 100644 --- a/code/modules/antagonists/_common/antag_exfiltration.dm +++ b/code/modules/antagonists/_common/antag_exfiltration.dm @@ -109,6 +109,10 @@ . += SPAN_WARNING(" - [A.name]") /obj/item/wormhole_jaunter/extraction/activate(mob/user) + if(!isAntag(user)) + to_chat(user, SPAN_WARNING("No matter how much you try, you can't get [src] to ignite!")) + return + if(!turf_check(user)) return