From d6b249817d97e9e66bcca9665bb9ca68d76eac34 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Sun, 11 Feb 2018 01:25:54 -0600 Subject: [PATCH] Falling onto space no longer hurts (#4774) --- code/modules/multiz/movement.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/multiz/movement.dm b/code/modules/multiz/movement.dm index 6372ff4113..caef506934 100644 --- a/code/modules/multiz/movement.dm +++ b/code/modules/multiz/movement.dm @@ -321,6 +321,13 @@ /turf/simulated/open/check_impact(var/atom/movable/falling_atom) return FALSE +// Or actual space. +/turf/space/CheckFall(var/atom/movable/falling_atom) + return FALSE + +/turf/space/check_impact(var/atom/movable/falling_atom) + return FALSE + // We return 1 without calling fall_impact in order to provide a soft landing. So nice. // Note this really should never even get this far /obj/structure/stairs/CheckFall(var/atom/movable/falling_atom)