From 4511946f270c842d76f669134f753e817b7fb70f Mon Sep 17 00:00:00 2001 From: JappaWakka Date: Fri, 18 Nov 2022 15:08:14 +0100 Subject: [PATCH] Fix invisible floors overwriting visible floors --- P3D/World/LevelLoader.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/P3D/World/LevelLoader.vb b/P3D/World/LevelLoader.vb index 86e0cfae3..4b4833a1b 100644 --- a/P3D/World/LevelLoader.vb +++ b/P3D/World/LevelLoader.vb @@ -748,7 +748,7 @@ End Function) End If - If Not Ent Is Nothing Then + If Not Ent Is Nothing AndAlso Visible = True Then Ent.Textures = {Texture} Ent.Visible = Visible Ent.SeasonColorTexture = SeasonTexture