diff options
author | Anthony Zhang <azhang9@gmail.com> | 2013-03-06 20:51:57 -0500 |
---|---|---|
committer | Anthony Zhang <azhang9@gmail.com> | 2013-03-06 20:51:57 -0500 |
commit | 3792b692aafed0ce6b0092b34278ad391b9eaf27 (patch) | |
tree | b369d66cdf9e418e014131f00d5a3547a4fc78e9 /mesecons_random | |
parent | 84d5546df1fbe17b7f6b60ec53fb596343d93340 (diff) |
Digging and footstep sounds for everything that needs them! Plus, pushing buttons, punching switches, and flipping levers all make sounds.
Diffstat (limited to 'mesecons_random')
-rw-r--r-- | mesecons_random/init.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesecons_random/init.lua b/mesecons_random/init.lua index 16ffa3b..f2e459a 100644 --- a/mesecons_random/init.lua +++ b/mesecons_random/init.lua @@ -5,6 +5,7 @@ minetest.register_node("mesecons_random:removestone", { inventory_image = minetest.inventorycube("jeija_removestone_inv.png"), groups = {cracky=3}, description="Removestone", + sounds = default.node_sound_stone_defaults(), mesecons = {effector = { action_on = function (pos, node) minetest.env:remove_node(pos) |