diff options
author | DS <vorunbekannt75@web.de> | 2017-10-07 00:44:49 +0200 |
---|---|---|
committer | Vitaliy <silverunicorn2011@yandex.ru> | 2017-10-07 01:44:49 +0300 |
commit | 905260c8db2d7d4844e3955fa38a79da233b3ab7 (patch) | |
tree | 046f23d139d256acb59efaedc3c99b2cf5b9cb4d /mesecons_luacontroller | |
parent | 8999597df2d4d5b5aa2011eb9880dfc758201a5a (diff) |
Handle blasts (#356)
Diffstat (limited to 'mesecons_luacontroller')
-rw-r--r-- | mesecons_luacontroller/init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesecons_luacontroller/init.lua b/mesecons_luacontroller/init.lua index 25273a1..ea285d4 100644 --- a/mesecons_luacontroller/init.lua +++ b/mesecons_luacontroller/init.lua @@ -629,6 +629,7 @@ for d = 0, 1 do mesecon.receptor_off(pos, output_rules) end, is_luacontroller = true, + on_blast = mesecon.on_blastnode, }) end end @@ -669,6 +670,7 @@ minetest.register_node(BASENAME .. "_burnt", { end, }, }, + on_blast = mesecon.on_blastnode, }) ------------------------ |