diff --git a/mods/mcl_hoppers/init.lua b/mods/mcl_hoppers/init.lua index ee9203f88..50aaf9bba 100644 --- a/mods/mcl_hoppers/init.lua +++ b/mods/mcl_hoppers/init.lua @@ -18,7 +18,7 @@ minetest.register_node("mcl_hoppers:hopper", { groups = {cracky=1,level=2,not_in_creative_inventory=1}, drawtype = "nodebox", paramtype = "light", - tiles = {"default_coal_block.png"}, + tiles = {"mcl_hoppers_hopper_inside.png^mcl_hoppers_hopper_top.png", "mcl_hoppers_hopper_outside.png", "mcl_hoppers_hopper_outside.png", "mcl_hoppers_hopper_inside.png", "mcl_hoppers_hopper_outside.png", "mcl_hoppers_hopper_outside.png"}, selection_box = {type="regular"}, node_box = { type = "fixed", @@ -78,7 +78,7 @@ minetest.register_node("mcl_hoppers:hopper_side", { drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", - tiles = {"default_coal_block.png"}, + tiles = {"mcl_hoppers_hopper_inside.png^mcl_hoppers_hopper_top.png", "mcl_hoppers_hopper_outside.png", "mcl_hoppers_hopper_outside.png", "mcl_hoppers_hopper_inside.png", "mcl_hoppers_hopper_outside.png", "mcl_hoppers_hopper_outside.png"}, selection_box = {type="regular"}, node_box = { type = "fixed", diff --git a/mods/mcl_hoppers/textures/mcl_hoppers_hopper_inside.png b/mods/mcl_hoppers/textures/mcl_hoppers_hopper_inside.png new file mode 100644 index 000000000..9121312bd Binary files /dev/null and b/mods/mcl_hoppers/textures/mcl_hoppers_hopper_inside.png differ diff --git a/mods/mcl_hoppers/textures/mcl_hoppers_hopper_outside.png b/mods/mcl_hoppers/textures/mcl_hoppers_hopper_outside.png new file mode 100644 index 000000000..7e2b9574c Binary files /dev/null and b/mods/mcl_hoppers/textures/mcl_hoppers_hopper_outside.png differ diff --git a/mods/mcl_hoppers/textures/mcl_hoppers_hopper_top.png b/mods/mcl_hoppers/textures/mcl_hoppers_hopper_top.png new file mode 100644 index 000000000..bf387c316 Binary files /dev/null and b/mods/mcl_hoppers/textures/mcl_hoppers_hopper_top.png differ diff --git a/mods/mcl_hoppers/textures/mcl_hoppers_item.png b/mods/mcl_hoppers/textures/mcl_hoppers_item.png index 56555af98..42f039c17 100644 Binary files a/mods/mcl_hoppers/textures/mcl_hoppers_item.png and b/mods/mcl_hoppers/textures/mcl_hoppers_item.png differ