diff options
author | Rainer <rdohmen@pensionmoselblick.de> | 2015-03-14 21:06:24 +0100 |
---|---|---|
committer | Rainer <rdohmen@pensionmoselblick.de> | 2015-03-14 21:06:24 +0100 |
commit | 388297de4e2154ea33620101a4db95086d166643 (patch) | |
tree | 11a0901afcfb883c1bb11ac8f8892f675e143b72 /teleport_tube.lua | |
parent | c4aa351fa0a1b8bc6c2c736b3f1cf126211ab93a (diff) |
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
Diffstat (limited to 'teleport_tube.lua')
-rw-r--r-- | teleport_tube.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/teleport_tube.lua b/teleport_tube.lua index 17beb06..3a870f5 100644 --- a/teleport_tube.lua +++ b/teleport_tube.lua @@ -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" } }, }) |