diff --git a/mods/redstone/mesecons_commandblock/init.lua b/mods/redstone/mesecons_commandblock/init.lua index fb75cdf12..66b2ed478 100644 --- a/mods/redstone/mesecons_commandblock/init.lua +++ b/mods/redstone/mesecons_commandblock/init.lua @@ -176,8 +176,7 @@ end minetest.register_node("mesecons_commandblock:commandblock_off", { description = "Command Block", - tiles = {"jeija_commandblock_off.png"}, - inventory_image = minetest.inventorycube("jeija_commandblock_off.png"), + tiles = {{name="jeija_commandblock_off.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=2}}}, groups = {mesecon_effector_off=1, not_in_creative_inventory=1, oddly_breakable_by_hand=5}, drop = "", diggable = false, @@ -194,7 +193,7 @@ minetest.register_node("mesecons_commandblock:commandblock_off", { }) minetest.register_node("mesecons_commandblock:commandblock_on", { - tiles = {"jeija_commandblock_on.png"}, + tiles = {{name="jeija_commandblock_off.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=2}}}, groups = {mesecon_effector_on=1, not_in_creative_inventory=1, oddly_breakable_by_hand=5}, drop = "", on_blast = function() end, diff --git a/mods/redstone/mesecons_textures/textures/jeija_commandblock_off.png b/mods/redstone/mesecons_textures/textures/jeija_commandblock_off.png index 933a62b41..46835c89c 100644 Binary files a/mods/redstone/mesecons_textures/textures/jeija_commandblock_off.png and b/mods/redstone/mesecons_textures/textures/jeija_commandblock_off.png differ diff --git a/mods/redstone/mesecons_textures/textures/jeija_commandblock_on.png b/mods/redstone/mesecons_textures/textures/jeija_commandblock_on.png index 933a62b41..46835c89c 100644 Binary files a/mods/redstone/mesecons_textures/textures/jeija_commandblock_on.png and b/mods/redstone/mesecons_textures/textures/jeija_commandblock_on.png differ