1
0
mirror of https://github.com/D00Med/scifi_nodes.git synced 2025-06-30 15:10:46 +02:00

Set more fitting node sounds (#74)

This commit is contained in:
Wuzzy
2022-12-03 18:30:28 +01:00
committed by GitHub
parent c44ced1362
commit 72471b7c3b
11 changed files with 133 additions and 63 deletions

View File

@ -44,7 +44,7 @@ minetest.register_node("scifi_nodes:switch_on", {
state = (has_mesecons and mesecon.state.on)
}
},
sounds = scifi_nodes.node_sound_glass_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
on_rightclick = (has_mesecons and toggle_switch),
on_timer = (has_mesecons and toggle_switch)
})
@ -71,7 +71,7 @@ minetest.register_node("scifi_nodes:switch_off", {
state = (has_mesecons and mesecon.state.off)
}
},
sounds = scifi_nodes.node_sound_glass_defaults(),
sounds = scifi_nodes.node_sound_metal_defaults(),
on_rightclick = (has_mesecons and toggle_switch)
})