From 5d93968b3563f6fb28d7bb9b52d2ca49e248c91d Mon Sep 17 00:00:00 2001 From: TullyBurnalot Date: Fri, 9 Dec 2016 22:19:03 +0000 Subject: [PATCH] Fixes self-propelled throwing - Throwing mobs over your back no longer pushes you as well; they just helpfully teleport over you --- code/modules/mob/living/carbon/carbon.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index f62df2ab76b..76946fbe00b 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -537,6 +537,7 @@ var/list/ventcrawl_machinery = list(/obj/machinery/atmospherics/unary/vent_pump, thrown_thing = throwable_mob var/turf/start_T = get_turf(loc) //Get the start and target tile for the descriptors var/turf/end_T = get_turf(target) + throwable_mob.forceMove(start_T) if(start_T && end_T) var/start_T_descriptor = "tile at [start_T.x], [start_T.y], [start_T.z] in area [get_area(start_T)]" var/end_T_descriptor = "tile at [end_T.x], [end_T.y], [end_T.z] in area [get_area(end_T)]"