Added 7 lucky blocks, removed farming dependency
This commit is contained in:
parent
b5fb2767cd
commit
769f2bb6e8
@ -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
|
||||
|
@ -1,3 +1,3 @@
|
||||
default
|
||||
farming
|
||||
intllib?
|
||||
lucky_block?
|
||||
|
15
init.lua
15
init.lua
@ -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"))
|
||||
|
Loading…
x
Reference in New Issue
Block a user