diff options
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -88,6 +88,17 @@ minetest.register_node("handdryer:xa5",{ "handdryer_metal.png", "handdryer_xa5_front.png", }, + on_destruct = function(pos) + local posbelow = vector.add(pos,vector.new(0,-1,0)) + local hash = minetest.hash_node_position(pos) + local handle = sounds[hash] + local meta = minetest.get_meta(pos) + if handle then minetest.sound_stop(handle) end + if meta:get_int("running") == 1 then + meta:set_int("running",0) + minetest.sound_play("handdryer_xa5_stop",{pos=pos,gain=0.75,max_hear_distance=20}) + end + end, }) minetest.register_abm({ |