forked from Mirrorlandia_minetest/mesecons
Gates: Update nor gate craft recipe, fixes #243
This commit is contained in:
parent
0ec771bf7d
commit
a6b28d1f11
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user