From b7fbcbbbdda381e19e407a9a965105c701683a53 Mon Sep 17 00:00:00 2001 From: Emmett Gaines Date: Sun, 29 Jul 2018 18:46:02 -0400 Subject: [PATCH] Adds Uncrossed to forceMove (#39434) Objects picked up from tables blocking throws will no longer be forever unthrowable --- code/game/atoms_movable.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm index dca52b04f75..2bd7bfb00aa 100644 --- a/code/game/atoms_movable.dm +++ b/code/game/atoms_movable.dm @@ -378,6 +378,8 @@ oldloc.Exited(src, destination) if(old_area) old_area.Exited(src, destination) + for(var/atom/movable/AM in oldloc) + AM.Uncrossed(src) var/turf/oldturf = get_turf(oldloc) var/turf/destturf = get_turf(destination) var/old_z = (oldturf ? oldturf.z : null)