1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-28 07:20:33 +02:00

Changed recipes for spikes and major spikes

This commit is contained in:
LeMagnesium 2015-03-15 00:19:38 +01:00
parent 5817264a58
commit 6b45ccbd10

View File

@ -128,18 +128,16 @@ minetest.register_node("bobblocks:trap_spike_major_set", {
minetest.register_craft({
output = 'bobblocks:trap_spike',
recipe = {
{'', '', ''},
{'', 'default:cobble', ''},
{'default:cobble', 'default:apple', 'default:cobble'},
{'', 'default:obsidian_shard', ''},
{'', 'default:steel_ingot', ''},
}
})
minetest.register_craft({
output = 'bobblocks:trap_spike_major',
recipe = {
{'', 'default:cobble', ''},
{'', 'default:apple', ''},
{'default:cobble', 'default:apple', 'default:cobble'},
{'default:obsidian_shard', 'default:obsidian_shard', 'default:obsidian_shard'},
{'', 'default:steel_ingot', ''},
}
})