From 07bb0e0cb17076f8797f4b10f72b2310ef540527 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 8 Jul 2017 18:08:02 +0200 Subject: [PATCH] Fix broken texture on bottom of grass path --- mods/ITEMS/mcl_core/nodes_base.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_core/nodes_base.lua b/mods/ITEMS/mcl_core/nodes_base.lua index eb1e8d68a..b0935dade 100644 --- a/mods/ITEMS/mcl_core/nodes_base.lua +++ b/mods/ITEMS/mcl_core/nodes_base.lua @@ -329,7 +329,7 @@ minetest.register_node("mcl_core:dirt_with_grass_snow", { }) minetest.register_node("mcl_core:grass_path", { - tiles = {"mcl_core_grass_path_top.png", "mcl_core_grass_path_side.png"}, + tiles = {"mcl_core_grass_path_top.png", "default_dirt.png", "mcl_core_grass_path_side.png"}, description = "Grass Path", _doc_items_longdesc = "Grass paths are a decorational variant of grass blocks. Their top has a different color and they are a bit lower than grass blocks, making them useful to build footpaths. Grass paths can be created with a shovel. A grass path turns into dirt when it is below a solid block.", drop = "mcl_core:dirt",