From 33e3097ecfddc1d63c808db0c9c60bad727cd92a Mon Sep 17 00:00:00 2001 From: Bm0n <92271472+Bm0n@users.noreply.github.com> Date: Tue, 13 Dec 2022 11:49:30 -0500 Subject: [PATCH] kaboom (#19880) --- code/modules/shuttle/shuttle.dm | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 38c09fbdbba..e3c1e9b330a 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -602,7 +602,6 @@ A.unlock() /obj/docking_port/mobile/proc/roadkill(list/L0, list/L1, dir) - var/list/hurt_mobs = list() for(var/i in 1 to L0.len) var/turf/T0 = L0[i] var/turf/T1 = L1[i] @@ -621,17 +620,11 @@ if(isliving(AM)) var/mob/living/L = AM L.stop_pulling() - if(L.anchored) - L.gib() - else - if(!(L in hurt_mobs)) - hurt_mobs |= L - L.visible_message("[L] is hit by \ - a hyperspace ripple[L.anchored ? "":" and is thrown clear"]!", + L.visible_message("[L] is hit by \ + a hyperspace ripple!", "You feel an immense \ crushing pressure as the space around you ripples.") - L.Paralyse(20 SECONDS) - L.ex_act(2) + L.gib() // Move unanchored atoms if(!AM.anchored)