diff --git a/mods/mcl_core/textures/default_torch.png b/mods/mcl_core/textures/default_torch.png deleted file mode 100644 index 0820cb9fe..000000000 Binary files a/mods/mcl_core/textures/default_torch.png and /dev/null differ diff --git a/mods/mcl_core/textures/default_torch_animated.png b/mods/mcl_core/textures/default_torch_animated.png deleted file mode 100644 index 0820cb9fe..000000000 Binary files a/mods/mcl_core/textures/default_torch_animated.png and /dev/null differ diff --git a/mods/mcl_core/textures/default_torch_on_ceiling.png b/mods/mcl_core/textures/default_torch_on_ceiling.png deleted file mode 100644 index 76f8c0a58..000000000 Binary files a/mods/mcl_core/textures/default_torch_on_ceiling.png and /dev/null differ diff --git a/mods/mcl_core/textures/default_torch_on_ceiling_animated.png b/mods/mcl_core/textures/default_torch_on_ceiling_animated.png deleted file mode 100644 index 76f8c0a58..000000000 Binary files a/mods/mcl_core/textures/default_torch_on_ceiling_animated.png and /dev/null differ diff --git a/mods/mcl_core/textures/default_torch_on_floor.png b/mods/mcl_torches/textures/default_torch_on_floor.png similarity index 100% rename from mods/mcl_core/textures/default_torch_on_floor.png rename to mods/mcl_torches/textures/default_torch_on_floor.png diff --git a/mods/mcl_core/textures/default_torch_on_floor_animated.png b/mods/mcl_torches/textures/default_torch_on_floor_animated.png similarity index 100% rename from mods/mcl_core/textures/default_torch_on_floor_animated.png rename to mods/mcl_torches/textures/default_torch_on_floor_animated.png diff --git a/mods/redstone/mesecons/wires.lua b/mods/redstone/mesecons/wires.lua index 82ee4e6e7..47bf08b25 100644 --- a/mods/redstone/mesecons/wires.lua +++ b/mods/redstone/mesecons/wires.lua @@ -102,8 +102,8 @@ for zmy=0, 1 do is_ground_content = false, -- inventory_image = "wires_inv.png", -- wield_image = "wires_inv.png", - inventory_image = "mesecons_redstone_dust.png", - wield_image = "mesecons_redstone_dust.png", + inventory_image = "redstone_redstone_dust.png", + wield_image = "redstone_redstone_dust.png", paramtype = "light", paramtype2 = "facedir", sunlight_propagates = true, @@ -133,8 +133,8 @@ for zmy=0, 1 do is_ground_content = false, -- inventory_image = "wires_inv.png", -- wield_image = "wires_inv.png", - inventory_image = "default_redstone_dust.png", - wield_image = "default_redstone_dust.png", + inventory_image = "redstone_redstone_dust.png", + wield_image = "redstone_redstone_dust.png", paramtype = "light", paramtype2 = "facedir", sunlight_propagates = true, diff --git a/mods/mcl_core/textures/default_redstone_block.png b/mods/redstone/mesecons_textures/textures/redstone_redstone_block.png similarity index 100% rename from mods/mcl_core/textures/default_redstone_block.png rename to mods/redstone/mesecons_textures/textures/redstone_redstone_block.png diff --git a/mods/redstone/mesecons_textures/textures/default_redstone_dust.png b/mods/redstone/mesecons_textures/textures/redstone_redstone_dust.png similarity index 100% rename from mods/redstone/mesecons_textures/textures/default_redstone_dust.png rename to mods/redstone/mesecons_textures/textures/redstone_redstone_dust.png diff --git a/mods/redstone/mesecons_torch/init.lua b/mods/redstone/mesecons_torch/init.lua index a1c2b10ba..812640b3e 100644 --- a/mods/redstone/mesecons_torch/init.lua +++ b/mods/redstone/mesecons_torch/init.lua @@ -72,7 +72,7 @@ mcl_torches.register_torch("mesecon_torch_on", "Mesecon Torch", "jeija_torches_o minetest.register_node("mesecons_torch:redstoneblock", { description = "Block of Redstone", - tiles = {"default_redstone_block.png"}, + tiles = {"redstone_redstone_block.png"}, stack_max = 64, groups = {cracky=1}, sounds = mcl_sounds.node_sound_stone_defaults(),