From e38f69d5494c7da73104a10d239c47d8b28913bc Mon Sep 17 00:00:00 2001
From: tenplus1 <tenplus1@users.noreply.github.com>
Date: Fri, 1 Apr 2016 11:34:28 +0100
Subject: [PATCH] Fix doors disappearing while underwater

Currently any doors viewed from underwater will disappear but removing the line 'use_texture_alpha = true,' seems to fix this.  Thanks to Thomas-S for finding this glitch.
---
 mods/doors/init.lua | 2 --
 1 file changed, 2 deletions(-)

diff --git a/mods/doors/init.lua b/mods/doors/init.lua
index 2b129aa2..9e099939 100644
--- a/mods/doors/init.lua
+++ b/mods/doors/init.lua
@@ -394,7 +394,6 @@ function doors.register(name, def)
 		paramtype = "light",
 		paramtype2 = "facedir",
 		sunlight_propagates = true,
-		use_texture_alpha = true,
 		walkable = true,
 		is_ground_content = false,
 		buildable_to = false,
@@ -427,7 +426,6 @@ function doors.register(name, def)
 		paramtype = "light",
 		paramtype2 = "facedir",
 		sunlight_propagates = true,
-		use_texture_alpha = true,
 		walkable = true,
 		is_ground_content = false,
 		buildable_to = false,
-- 
GitLab