diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-10 11:08:48 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-12-10 11:08:48 +0000 |
commit | 769f2bb6e8f32880f5d044ad70f8b8fba8a85ff4 (patch) | |
tree | 5a3a7bb619abe8aaa74b1d01ba00ddcc47c0b102 | |
parent | b5fb2767cd3a8967c21f1e738fd7992cda811270 (diff) |
Added 7 lucky blocks, removed farming dependency
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | depends.txt | 2 | ||||
-rw-r--r-- | init.lua | 15 |
3 files changed, 18 insertions, 1 deletions
@@ -13,3 +13,5 @@ Change log: - 0.3 - New barrel model from cottages mod (thanks Napiophelios), also wine glass can be placed - 0.4 - Added ability to ferment barley from farming redo into beer and also honey from mobs redo into honey mead - 0.5 - Added apple cider + +Lucky Blocks: 7 diff --git a/depends.txt b/depends.txt index 657056a..53a9e75 100644 --- a/depends.txt +++ b/depends.txt @@ -1,3 +1,3 @@ default -farming intllib? +lucky_block? @@ -321,4 +321,19 @@ minetest.register_abm({ end, }) +-- add lucky blocks + +if minetest.get_modpath("lucky_block") then + +lucky_block:add_blocks({ + {"dro", {"wine:glass_wine"}, 5}, + {"dro", {"wine:glass_beer"}, 5}, + {"dro", {"wine:glass_mead"}, 5}, + {"dro", {"wine:glass_cider"}, 5}, + {"nod", "wine:bottle_wine"}, + {"nod", "wine:wine_barrel"}, + {"tel", 5, 1}, +}) +end + print (S("[MOD] Wine loaded")) |