summaryrefslogtreecommitdiff
path: root/noteblock.lua
diff options
context:
space:
mode:
Diffstat (limited to 'noteblock.lua')
-rw-r--r--noteblock.lua11
1 files changed, 10 insertions, 1 deletions
diff --git a/noteblock.lua b/noteblock.lua
index f2e9c89..665c201 100644
--- a/noteblock.lua
+++ b/noteblock.lua
@@ -30,7 +30,7 @@ minetest.register_node("digistuff:noteblock", {
local meta = minetest.get_meta(pos)
if fields.channel then meta:set_string("channel",fields.channel) end
end,
- digiline =
+ digiline =
{
receptor = {},
effector = {
@@ -62,3 +62,12 @@ minetest.register_node("digistuff:noteblock", {
},
},
})
+
+minetest.register_craft({
+ output = "digistuff:noteblock",
+ recipe = {
+ {"mesecons_noteblock:noteblock"},
+ {"mesecons_luacontroller:luacontroller0000"},
+ {"digilines:wire_std_00000000"},
+ },
+})