From 1bf32bd0eb1e53a86ee0838d72f52a24ebb7a653 Mon Sep 17 00:00:00 2001 From: Amaz Date: Wed, 21 Oct 2015 17:40:26 +0100 Subject: [PATCH] Fix an issue with the screwdriver being used on glass. https://forum.minetest.net/viewtopic.php?f=6&t=13438 --- mods/default/nodes.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index f7e40181..f55d057f 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -1636,6 +1636,7 @@ minetest.register_node("default:glass", { description = "Glass", drawtype = "glasslike_framed_optional", tiles = {"default_glass.png", "default_glass_detail.png"}, + special_tiles = {"blank.png"}, inventory_image = minetest.inventorycube("default_glass.png"), paramtype = "light", sunlight_propagates = true, @@ -1648,6 +1649,7 @@ minetest.register_node("default:obsidian_glass", { description = "Obsidian Glass", drawtype = "glasslike_framed_optional", tiles = {"default_obsidian_glass.png", "default_obsidian_glass_detail.png"}, + special_tiles = {"blank.png"}, inventory_image = minetest.inventorycube("default_obsidian_glass.png"), paramtype = "light", is_ground_content = false,