add alternate recipe
This commit is contained in:
parent
0530de06f0
commit
aa32d91d3c
@ -21,6 +21,6 @@ Change log:
|
||||
- 1.3 - Tweaked code to use a single abm and added intllib support
|
||||
- 1.4 - Simplified hopper placement function and added some nil checks
|
||||
- 1.5 - Updating to newer functions, requires Minetest 0.4.16 and above.
|
||||
- 1.6 - Added Void Hopper (use to set container output, requires teleport potion for recipe :)
|
||||
- 1.6 - Added Void Hopper (use to set container output before placing)
|
||||
|
||||
Lucky Blocks: 2
|
||||
|
8
init.lua
8
init.lua
@ -611,6 +611,14 @@ if minetest.get_modpath("teleport_potion") then
|
||||
{"teleport_potion:potion", "default:steel_ingot", "teleport_potion:potion"},
|
||||
},
|
||||
})
|
||||
else
|
||||
minetest.register_craft({
|
||||
output = "hopper:hopper_void",
|
||||
recipe = {
|
||||
{"default:steel_ingot", "default:chest", "default:steel_ingot"},
|
||||
{"default:diamondblock", "default:steel_ingot", "default:mese"},
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user