From 4bf3bb9c31526b6e9437afcfbd348794145f2fb4 Mon Sep 17 00:00:00 2001 From: Markolie Date: Sun, 27 Sep 2015 06:32:17 +0200 Subject: [PATCH] Remove redundant check --- code/game/turfs/space/space.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/game/turfs/space/space.dm b/code/game/turfs/space/space.dm index dbd78b50188..9cafaf48198 100644 --- a/code/game/turfs/space/space.dm +++ b/code/game/turfs/space/space.dm @@ -90,10 +90,7 @@ if ((!(A) || src != A.loc)) return - if(destination_z) - if(A.z > MAX_Z) - return - + if(destination_z) A.x = destination_x A.y = destination_y A.z = destination_z