From 16836b16d690e2d337575afe9fde286f32ec5d5f Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 8 Aug 2020 11:22:51 +0200 Subject: Make more nodes trigger special noteblock sounds (#506) --- mesecons_noteblock/init.lua | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'mesecons_noteblock/init.lua') diff --git a/mesecons_noteblock/init.lua b/mesecons_noteblock/init.lua index 55a9bd7..b4e7d24 100644 --- a/mesecons_noteblock/init.lua +++ b/mesecons_noteblock/init.lua @@ -43,19 +43,33 @@ local soundnames = { } local node_sounds = { - ["default:glass"] = "mesecons_noteblock_hihat", - ["default:stone"] = "mesecons_noteblock_kick", ["default:lava_source"] = "fire_fire", ["default:chest"] = "mesecons_noteblock_snare", - ["default:tree"] = "mesecons_noteblock_crash", - ["default:wood"] = "mesecons_noteblock_litecrash", + ["default:chest_locked"] = "mesecons_noteblock_snare", ["default:coalblock"] = "tnt_explode", + ["default:glass"] = "mesecons_noteblock_hihat", + ["default:obsidian_glass"] = "mesecons_noteblock_hihat", +} + +local node_sounds_group = { + ["stone"] = "mesecons_noteblock_kick", + ["tree"] = "mesecons_noteblock_crash", + ["wood"] = "mesecons_noteblock_litecrash", } mesecon.noteblock_play = function(pos, param2) pos.y = pos.y-1 local nodeunder = minetest.get_node(pos).name local soundname = node_sounds[nodeunder] + if not soundname then + for k,v in pairs(node_sounds_group) do + local g = minetest.get_item_group(nodeunder, k) + if g ~= 0 then + soundname = v + break + end + end + end if not soundname then soundname = soundnames[param2] if not soundname then -- cgit v1.2.3