diff options
-rw-r--r-- | depends.txt | 1 | ||||
-rw-r--r-- | init.lua | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/depends.txt b/depends.txt index 9e9d990..0dc5ef3 100644 --- a/depends.txt +++ b/depends.txt @@ -1 +1,2 @@ mobs +lucky_block? @@ -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
\ No newline at end of file |