summaryrefslogtreecommitdiff
path: root/devices.lua
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2021-02-07 12:46:16 +0000
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2021-02-07 12:46:16 +0000
commita735d1a1552eb1d9de18244bbae1ee21ddeabc9b (patch)
tree46a065b492acfe1db1ff83e3875b08e38bfc580b /devices.lua
parentf0ef43823cb198a3f426d7d1db88d42f5079fbbd (diff)
parenta2c0dd11307120470a7c4ca4915f7741729e8e01 (diff)
downloadpipeworks-a735d1a1552eb1d9de18244bbae1ee21ddeabc9b.tar
pipeworks-a735d1a1552eb1d9de18244bbae1ee21ddeabc9b.tar.gz
pipeworks-a735d1a1552eb1d9de18244bbae1ee21ddeabc9b.tar.bz2
pipeworks-a735d1a1552eb1d9de18244bbae1ee21ddeabc9b.tar.xz
pipeworks-a735d1a1552eb1d9de18244bbae1ee21ddeabc9b.zip
Merge branch 'm_small_fixes' into 'master'
Various small fixes See merge request VanessaE/pipeworks!35
Diffstat (limited to 'devices.lua')
-rw-r--r--devices.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/devices.lua b/devices.lua
index a96767b..86b38ea 100644
--- a/devices.lua
+++ b/devices.lua
@@ -465,7 +465,7 @@ minetest.register_node(nodename_sensor_empty, {
end,
on_construct = function(pos)
if mesecon then
- mesecon.receptor_off(pos, rules)
+ mesecon.receptor_off(pos, pipeworks.mesecons_rules)
end
end,
selection_box = {
@@ -504,7 +504,7 @@ minetest.register_node(nodename_sensor_loaded, {
end,
on_construct = function(pos)
if mesecon then
- mesecon.receptor_on(pos, rules)
+ mesecon.receptor_on(pos, pipeworks.mesecons_rules)
end
end,
selection_box = {
@@ -626,7 +626,7 @@ minetest.register_node(nodename_fountain_empty, {
end,
on_construct = function(pos)
if mesecon then
- mesecon.receptor_on(pos, rules)
+ mesecon.receptor_on(pos, pipeworks.mesecons_rules)
end
end,
selection_box = {
@@ -661,7 +661,7 @@ minetest.register_node(nodename_fountain_loaded, {
end,
on_construct = function(pos)
if mesecon then
- mesecon.receptor_on(pos, rules)
+ mesecon.receptor_on(pos, pipeworks.mesecons_rules)
end
end,
selection_box = {