projects
/
oweals
/
minetest_game.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8bc9359
)
Default: More generous meselamp recipe
author
paramat
<mat.gregory@virginmedia.com>
Sun, 1 Jan 2017 14:10:22 +0000
(14:10 +0000)
committer
paramat
<mat.gregory@virginmedia.com>
Mon, 2 Jan 2017 18:31:01 +0000
(18:31 +0000)
Require only 1 mese crystal instead of 3.
To make farming in dark locations easier.
To reduce and balance recipe ore cost.
mods/default/crafting.lua
patch
|
blob
|
history
diff --git
a/mods/default/crafting.lua
b/mods/default/crafting.lua
index 483245c23093426dc173a46c0a712f12d82199c4..7738be32cb0211834ff4d7d703f847c5e8df6eec 100644
(file)
--- a/
mods/default/crafting.lua
+++ b/
mods/default/crafting.lua
@@
-632,10
+632,10
@@
minetest.register_craft({
})
minetest.register_craft({
- output = 'default:meselamp
1
',
+ output = 'default:meselamp',
recipe = {
- {'
', 'default:mese_crystal','
'},
- {'default:mese_crystal'
, 'default:glass', 'default:mese_crystal'
},
+ {'
default:glass
'},
+ {'default:mese_crystal'},
}
})