Added 7 lucky blocks, removed farming dependency

master
TenPlus1 2016-12-10 11:08:48 +00:00
parent b5fb2767cd
commit 769f2bb6e8
3 changed files with 18 additions and 1 deletions

View File

@ -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

View File

@ -1,3 +1,3 @@
default
farming
intllib?
lucky_block?

View File

@ -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"))