From df0b0200cf53b6477a810e338c015253f78901f9 Mon Sep 17 00:00:00 2001 From: Migratingcocofruit <69551563+Migratingcocofruit@users.noreply.github.com> Date: Sun, 13 Apr 2025 15:39:27 +0300 Subject: [PATCH] Call parent if Z level transition fails (#28977) --- code/game/turfs/turf.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index 1a2577d95a1..258bd688cc3 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -866,6 +866,8 @@ if(destination_z) var/turf/T = locate(destination_x, destination_y, destination_z) user.forceMove(T) + return TRUE + return ..() /// Returns whether it is safe for an atom to move across this turf /// TODO: Things like lava will need to have more specialized code