diff options
author | sfan5 <sfan5@live.de> | 2017-01-19 16:31:11 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2017-01-19 16:31:36 +0100 |
commit | 7667e7d8c53b310daf8fc7a2edb20525837c038c (patch) | |
tree | 3710e90e2620472db1f8c12ea331a596757adb10 | |
parent | ececf525b6f717956a38fa314d2472f72451159d (diff) |
Fix Lua error with microcontrollers
caused by an oversight in ececf525b6f717956a38fa314d2472f72451159d
-rw-r--r-- | mesecons_microcontroller/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesecons_microcontroller/init.lua b/mesecons_microcontroller/init.lua index ef43296..b241713 100644 --- a/mesecons_microcontroller/init.lua +++ b/mesecons_microcontroller/init.lua @@ -130,7 +130,7 @@ minetest.register_node(nodename, { "button_exit[3.5,1;2,3;program;Program]") meta:set_string("infotext", "Programmed Microcontroller") yc.reset (pos) - update(pos) + yc.update(pos) end, sounds = default.node_sound_stone_defaults(), mesecons = mesecons, |