mirror of
https://github.com/minetest-mods/hopper.git
synced 2025-01-03 02:57:29 +01:00
added 2x lucky blocks
This commit is contained in:
parent
44abc220a4
commit
73e258b005
@ -17,3 +17,5 @@ Change log:
|
|||||||
- 0.9 - Added support for Wine mod's wine barrels
|
- 0.9 - Added support for Wine mod's wine barrels
|
||||||
- 1.0 - New furances do not work properly with hoppers so old reverted to abm furnaces
|
- 1.0 - New furances do not work properly with hoppers so old reverted to abm furnaces
|
||||||
- 1.1 - Hoppers now work with new node timer Furnaces. Reduced Abm's and tidied code.
|
- 1.1 - Hoppers now work with new node timer Furnaces. Reduced Abm's and tidied code.
|
||||||
|
|
||||||
|
Lucky Blocks: 2
|
||||||
|
@ -1 +1,2 @@
|
|||||||
default
|
default
|
||||||
|
lucky_block?
|
1
description.txt
Normal file
1
description.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
Adds hoppers to transport items between chests/furnace etc.
|
11
init.lua
11
init.lua
@ -393,4 +393,15 @@ minetest.register_craft({
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- add lucky blocks
|
||||||
|
|
||||||
|
-- Hopper mod
|
||||||
|
if minetest.get_modpath("lucky_block") then
|
||||||
|
|
||||||
|
lucky_block:add_blocks({
|
||||||
|
{"dro", {"hopper:hopper"}, 3},
|
||||||
|
{"nod", "default:lava_source", 1},
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
print ("[MOD] Hopper loaded")
|
print ("[MOD] Hopper loaded")
|
||||||
|
1
mod.conf
Normal file
1
mod.conf
Normal file
@ -0,0 +1 @@
|
|||||||
|
name = hopper
|
Loading…
Reference in New Issue
Block a user