Skip to content

Commit

Permalink
Gates: Update nor gate craft recipe, fixes #243
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeija committed Dec 15, 2015
1 parent 0ec771b commit a6b28d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesecons_gates/init.lua
Expand Up @@ -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,
Expand Down

0 comments on commit a6b28d1

Please sign in to comment.