From aee34845cb2683e14bc849371466189d63df085c Mon Sep 17 00:00:00 2001 From: sys4 Date: Sat, 20 Mar 2021 16:23:39 +0100 Subject: [PATCH] Fix deprecated use of use_texture_alpha --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 1de7b27..b3ffd4e 100644 --- a/init.lua +++ b/init.lua @@ -52,7 +52,7 @@ minetest.register_node("stained_glass:stained_glass", { paramtype2 = "color", palette = "unifieddyes_palette_extended.png", sunlight_propagates = true, - use_texture_alpha = true, + use_texture_alpha = "blend", light_source = myglow, is_ground_content = true, walkable = true, @@ -78,7 +78,7 @@ minetest.register_node("stained_glass:stained_trap_glass", { paramtype2 = "color", palette = "unifieddyes_palette_extended.png", sunlight_propagates = true, - use_texture_alpha = true, + use_texture_alpha = "blend", light_source = myglow, is_ground_content = true, walkable = false,