aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--depends.txt1
-rw-r--r--init.lua12
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?
diff --git a/init.lua b/init.lua
index 241899d..c588b15 100644
--- a/init.lua
+++ b/init.lua
@@ -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