mirror of
https://github.com/minetest-mods/digilines.git
synced 2024-11-06 02:10:17 +01:00
Merge pull request #22 from MT-Modder/chest-craft
Add craft recipe for digiline chest
This commit is contained in:
commit
1dfc602eca
|
@ -135,3 +135,9 @@ minetest.register_node("digilines_inventory:chest", {
|
||||||
minetest.log("action", player:get_player_name().." takes stuff from chest at "..minetest.pos_to_string(pos))
|
minetest.log("action", player:get_player_name().." takes stuff from chest at "..minetest.pos_to_string(pos))
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "digilines_inventory:chest",
|
||||||
|
recipe = {"default:chest", "digilines:wire_std_00000000"}
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user