Skip to content

Commit

Permalink
Merge pull request #82 from Jat15/patch-1
Browse files Browse the repository at this point in the history
Fix bug texture in mesewire for 0.4 stable
  • Loading branch information
Jeija committed Mar 5, 2013
2 parents 4c0988c + 629a52a commit 84d5546
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mesecons_extrawires/mesewire.lua
Expand Up @@ -10,7 +10,7 @@ local mesewire_rules =

minetest.register_node(":default:mese", {
description = "Mese Block",
tiles = {"default_mese_block.png"},
tiles = {minetest.registered_nodes["default:mese"].tiles[1]},
is_ground_content = true,
groups = {cracky=1},
sounds = default.node_sound_stone_defaults(),
Expand All @@ -22,7 +22,7 @@ minetest.register_node(":default:mese", {
})

minetest.register_node("mesecons_extrawires:mese_powered", {
tiles = {"default_mese_block.png^[brighten"},
tiles = {minetest.registered_nodes["default:mese"].tiles[1].."^[brighten"},
is_ground_content = true,
groups = {cracky=1, not_in_creative_inventory = 1},
sounds = default.node_sound_stone_defaults(),
Expand Down

0 comments on commit 84d5546

Please sign in to comment.