summaryrefslogtreecommitdiff
path: root/mesecons_noteblock/init.lua
diff options
context:
space:
mode:
authorC1ff <c1ff@alandmoore.com>2015-02-03 12:48:12 -0600
committerJeija <norrepli@gmail.com>2015-02-04 19:45:17 +0100
commit11cf727bfbe71874a5f5c77aa83ae4145754f98c (patch)
tree8b2cb3f55af473bc74aecacbe1af51ed312c8a2a /mesecons_noteblock/init.lua
parent30468b09cf35b3122e05f1e2867923fdcad5a5d2 (diff)
downloadmesecons-11cf727bfbe71874a5f5c77aa83ae4145754f98c.tar
mesecons-11cf727bfbe71874a5f5c77aa83ae4145754f98c.tar.gz
mesecons-11cf727bfbe71874a5f5c77aa83ae4145754f98c.tar.bz2
mesecons-11cf727bfbe71874a5f5c77aa83ae4145754f98c.tar.xz
mesecons-11cf727bfbe71874a5f5c77aa83ae4145754f98c.zip
Added more sounds to noteblocks, see the documentation on http://mesecons.net for more information
Diffstat (limited to 'mesecons_noteblock/init.lua')
-rw-r--r--mesecons_noteblock/init.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/mesecons_noteblock/init.lua b/mesecons_noteblock/init.lua
index d63b93e..6321882 100644
--- a/mesecons_noteblock/init.lua
+++ b/mesecons_noteblock/init.lua
@@ -61,9 +61,15 @@ mesecon.noteblock_play = function (pos, param2)
if block_below_name == "default:glass" then
soundname="mesecons_noteblock_hihat"
end
+ if block_below_name == "default:steelblock" then
+ soundname=soundname.."2" -- Go up an octave.
+ end
if block_below_name == "default:stone" then
soundname="mesecons_noteblock_kick"
end
+ if block_below_name == "default:lava_source" then
+ soundname="fire_large"
+ end
if block_below_name == "default:chest" then
soundname="mesecons_noteblock_snare"
end
@@ -73,6 +79,9 @@ mesecon.noteblock_play = function (pos, param2)
if block_below_name == "default:wood" then
soundname="mesecons_noteblock_litecrash"
end
+ if block_below_name == "default:coalblock" then
+ soundname="tnt_explode"
+ end
minetest.sound_play(soundname,
{pos = pos, gain = 1.0, max_hear_distance = 32,})
end