teleport_tube.lua recipe change

The default mese block has been changed to default:mese, so a change of the recipe of the teleport_tube_1 had to be made
This commit is contained in:
Rainer 2015-03-14 21:06:24 +01:00
parent c4aa351fa0
commit 388297de4e
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ minetest.register_craft( {
output = "pipeworks:teleport_tube_1 2",
recipe = {
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
{ "default:desert_stone", "default:mese_block", "default:desert_stone" },
{ "default:desert_stone", "default:mese", "default:desert_stone" },
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
},
})