diff options
author | Jeija <norrepli@gmail.com> | 2012-04-02 10:42:41 +0200 |
---|---|---|
committer | Jeija <norrepli@gmail.com> | 2012-04-02 10:42:41 +0200 |
commit | dbaafc538cbd691f44fe9b0adeb70e93cded074e (patch) | |
tree | 2fbd3979a125b9bd61d14403f32e813720132a03 | |
parent | 3ed12458d2cbc2ca453ab0452236f24b73fe240d (diff) | |
download | mesecons-dbaafc538cbd691f44fe9b0adeb70e93cded074e.tar mesecons-dbaafc538cbd691f44fe9b0adeb70e93cded074e.tar.gz mesecons-dbaafc538cbd691f44fe9b0adeb70e93cded074e.tar.bz2 mesecons-dbaafc538cbd691f44fe9b0adeb70e93cded074e.tar.xz mesecons-dbaafc538cbd691f44fe9b0adeb70e93cded074e.zip |
Fix Mesecon Torch
-rw-r--r-- | mesecons_torch/init.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mesecons_torch/init.lua b/mesecons_torch/init.lua index dc1368a..169eb64 100644 --- a/mesecons_torch/init.lua +++ b/mesecons_torch/init.lua @@ -68,7 +68,6 @@ minetest.register_abm({ local postc = {x=pos.x-pa.x, y=pos.y-pa.y, z=pos.z-pa.z} if mesecon:is_power_on(postc) then - print ("LAWL") if node.name ~= "mesecons_torch:mesecon_torch_off" then minetest.env:add_node(pos, {name="mesecons_torch:mesecon_torch_off",param2=node.param2}) mesecon:receptor_off(pos, rules_string) |