try to fix toilet sound positioning

This commit is contained in:
Vanessa Ezekowitz 2014-06-18 06:10:26 -04:00
parent e1f1e32373
commit 501b942542
1 changed files with 5 additions and 1 deletions

View File

@ -64,7 +64,11 @@ minetest.register_node("homedecor:toilet_open", {
on_punch = function (pos, node, puncher)
node.name = "homedecor:toilet"
minetest.set_node(pos, node)
minetest.sound_play("homedecor_toilet_flush",{pos=pos, max_hear_distance=5,})
minetest.sound_play("homedecor_toilet_flush", {
pos=pos,
max_hear_distance = 5,
gain = 1,
})
end,
})