Skip to content

Commit a6b28d1

Browse files
committedDec 15, 2015
Gates: Update nor gate craft recipe, fixes #243
1 parent 0ec771b commit a6b28d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎mesecons_gates/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ register_gate("xor", 2, function (val1, val2) return (val1 or val2) and not (val
125125

126126
register_gate("nor", 2, function (val1, val2) return not (val1 or val2) end,
127127
{{"mesecons:mesecon", "", ""},
128-
{"", "mesecons_materials:mesecon_torch_on", "mesecons_materials:silicon"},
128+
{"", "mesecons:mesecon", "mesecons_torch:mesecon_torch_on"},
129129
{"mesecons:mesecon", "", ""}})
130130

131131
register_gate("or", 2, function (val1, val2) return (val1 or val2) end,

0 commit comments

Comments
 (0)
Please sign in to comment.