From 228e25e123049390f25ba1b717646d31941f6cb7 Mon Sep 17 00:00:00 2001
From: Vanessa Ezekowitz <vanessaezekowitz@gmail.com>
Date: Thu, 28 Sep 2017 06:22:53 -0400
Subject: [PATCH] get rid of inventorycube() calls

they're obsolete and annoying in combo with current inventory hover animations
---
 building_blocks/node_stairs.lua | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/building_blocks/node_stairs.lua b/building_blocks/node_stairs.lua
index 7d3f6f0c..bf78b1b3 100644
--- a/building_blocks/node_stairs.lua
+++ b/building_blocks/node_stairs.lua
@@ -60,7 +60,6 @@ building_blocks_stairs("building_blocks:grate", {
 	drawtype = "glasslike",
 	description = S("Grate"),
 	tiles = {"building_blocks_grate.png"},
-	inventory_image = minetest.inventorycube("building_blocks_grate.png"),
 	paramtype = "light",
 	sunlight_propagates = true,
 	is_ground_content = true,
@@ -98,7 +97,6 @@ minetest.register_node("building_blocks:smoothglass", {
 	drawtype = "glasslike",
 	description = S("Streak Free Glass"),
 	tiles = {"building_blocks_sglass.png"},
-	inventory_image = minetest.inventorycube("building_blocks_sglass.png"),
 	paramtype = "light",
 	sunlight_propagates = true,
 	is_ground_content = true,
@@ -109,7 +107,6 @@ minetest.register_node("building_blocks:woodglass", {
 	drawtype = "glasslike",
 	description = S("Wood Framed Glass"),
 	tiles = {"building_blocks_wglass.png"},
-	inventory_image = minetest.inventorycube("building_blocks_wglass.png"),
 	paramtype = "light",
 	sunlight_propagates = true,
 	is_ground_content = true,
@@ -226,4 +223,4 @@ minetest.register_node("building_blocks:Fireplace", {
 	sunlight_propagates = true,
 	is_ground_content = true,
 	groups = {cracky=2},
-})
\ No newline at end of file
+})
-- 
GitLab