diff options
author | Megaf <mmegaf@gmail.com> | 2016-10-04 16:55:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-04 16:55:43 +0100 |
commit | 720244e8b4930e6a64bd023f6efa40441b730da0 (patch) | |
tree | 713d5486e11f548ef900ed6f088c63f922fe8458 | |
parent | d2ea7c352ada7646e019f55a365a506d132f301a (diff) |
Fix craft conflict with bars.
And make safes a little bit more valuable.
-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'},
}
})
|