From 8b6c5f0cad58cd4ddefdbdc9b3ecf83cd1e4af1b Mon Sep 17 00:00:00 2001 From: Joaquin Villalba Date: Sat, 2 Jan 2021 23:16:21 -0300 Subject: [PATCH] Updated Glass of Water to actually be transparent Added `use_texture_alpha = true` to the definition of claycrafter:glass_of_water --- items.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/items.lua b/items.lua index 823858d..81e47b8 100644 --- a/items.lua +++ b/items.lua @@ -33,6 +33,7 @@ minetest.register_node("claycrafter:glass_of_water", { inventory_image = "claycrafter_glass_of_water_inv.png", wield_image = "claycrafter_glass_of_water.png", paramtype = "light", + use_texture_alpha = true, is_ground_content = false, walkable = false, sunlight_propagates = true,