diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2016-10-04 12:42:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-04 12:42:39 -0400 |
commit | 9fe76c6243af94a4d7dedf6264a29d4173fcd2db (patch) | |
tree | 713d5486e11f548ef900ed6f088c63f922fe8458 | |
parent | d2ea7c352ada7646e019f55a365a506d132f301a (diff) | |
parent | 720244e8b4930e6a64bd023f6efa40441b730da0 (diff) |
Merge pull request #3 from Megaf/patch-1
Fix craft conflict with bars.
-rw-r--r-- | crafting.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crafting.lua b/crafting.lua index 33a9553..d80b74c 100644 --- a/crafting.lua +++ b/crafting.lua @@ -2,7 +2,7 @@ minetest.register_craft({ output = 'currency:safe',
recipe = {
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
- {'default:steel_ingot', '', 'default:steel_ingot'},
+ {'default:steel_ingot', 'default:mese_crystal', 'default:steel_ingot'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
}
})
|