From 8c06820e1ff9326dd5135b16280e69d034198a6a Mon Sep 17 00:00:00 2001 From: alex-gh Date: Wed, 29 Aug 2018 09:02:52 +0200 Subject: [PATCH] Gateway now also checks for exile implants in buckled mobs. --- code/modules/awaymissions/gateway.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/awaymissions/gateway.dm b/code/modules/awaymissions/gateway.dm index d5e2cbcd34d..1d4efa95365 100644 --- a/code/modules/awaymissions/gateway.dm +++ b/code/modules/awaymissions/gateway.dm @@ -246,6 +246,8 @@ var/obj/machinery/gateway/centerstation/the_gateway = null if(istype(M, /mob/living/carbon)) if(exilecheck(M)) return if(istype(M, /obj)) + if(M.can_buckle && M.has_buckled_mobs()) + if(exilecheck(M.buckled_mob)) return for(var/mob/living/carbon/F in M) if(exilecheck(F)) return M.forceMove(get_step(stationgate.loc, SOUTH))