add lucky blocks

This commit is contained in:
TenPlus1 2017-10-12 12:39:13 +01:00
parent 7876f5018a
commit 86c46b3ecf
2 changed files with 13 additions and 0 deletions

View File

@ -1 +1,2 @@
mobs
lucky_block?

View File

@ -251,3 +251,15 @@ minetest.register_craft({
{"default:diamond", "", "default:diamond"},
}
})
-- lucky blocks
if minetest.get_modpath("lucky_block") then
lucky_block:add_blocks({
{"dro", {"mobs:horseshoe_steel"}},
{"dro", {"mobs:horseshoe_bronze"}},
{"dro", {"mobs:horseshoe_mese"}},
{"dro", {"mobs:horseshoe_diamond"}},
})
end