From da5e807e3f8630dc0b3eaa6d34f57d3933aa532d Mon Sep 17 00:00:00 2001 From: cheapie Date: Fri, 30 Aug 2024 14:09:27 -0500 Subject: Fix automatic dryer sound getting stuck on if a running dryer is removed --- init.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'init.lua') diff --git a/init.lua b/init.lua index 8227780..a978f36 100644 --- a/init.lua +++ b/init.lua @@ -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({ -- cgit v1.2.3