From 202a9deae460c8b4f252bacd4df455a410b9fb07 Mon Sep 17 00:00:00 2001 From: Leshana Date: Mon, 9 Apr 2018 18:09:56 -0400 Subject: [PATCH] Fix shuttle corner turfs disappearing when shuttle moves. When shuttles land on a turf, it takes the appearance of the turf it lands on as an underlay. Must make sure this underlay is on FLOAT_PLANE otherwise it will likely end up OVER the turf itself. --- code/game/turfs/simulated/floor_types.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/turfs/simulated/floor_types.dm b/code/game/turfs/simulated/floor_types.dm index 3c4856cf004..dc49c0d893a 100644 --- a/code/game/turfs/simulated/floor_types.dm +++ b/code/game/turfs/simulated/floor_types.dm @@ -105,6 +105,7 @@ if(landed_holder && !interior_corner) var/mutable_appearance/landed_on = new(landed_holder) landed_on.layer = FLOAT_LAYER //Not turf + landed_on.plane = FLOAT_PLANE //Not turf us.underlays = list(landed_on) appearance = us return