Gates: Update nor gate craft recipe, fixes #243

This commit is contained in:
Jeija 2015-12-15 22:25:39 +01:00
parent 0ec771bf7d
commit a6b28d1f11
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ register_gate("xor", 2, function (val1, val2) return (val1 or val2) and not (val
register_gate("nor", 2, function (val1, val2) return not (val1 or val2) end,
{{"mesecons:mesecon", "", ""},
{"", "mesecons_materials:mesecon_torch_on", "mesecons_materials:silicon"},
{"", "mesecons:mesecon", "mesecons_torch:mesecon_torch_on"},
{"mesecons:mesecon", "", ""}})
register_gate("or", 2, function (val1, val2) return (val1 or val2) end,