aboutsummaryrefslogtreecommitdiff
path: root/builtin/game/falling.lua
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2020-01-25 21:57:29 +0100
committersfan5 <sfan5@live.de>2020-02-01 20:31:41 +0100
commit7d29611c1b619b6a336fc0505d993fbe539a62b9 (patch)
tree3d8d7e6174e3393bb04575cf11cebc513b88c774 /builtin/game/falling.lua
parentc10e188594d445c724de6b11fd70590bbe6b57d7 (diff)
downloadhax-minetest-server-7d29611c1b619b6a336fc0505d993fbe539a62b9.tar.gz
hax-minetest-server-7d29611c1b619b6a336fc0505d993fbe539a62b9.zip
Convert sound_play uses in builtin to ephemeral
Diffstat (limited to 'builtin/game/falling.lua')
-rw-r--r--builtin/game/falling.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/game/falling.lua b/builtin/game/falling.lua
index 950d6b56f..4dd60de05 100644
--- a/builtin/game/falling.lua
+++ b/builtin/game/falling.lua
@@ -128,7 +128,7 @@ core.register_entity(":__builtin:falling_node", {
meta:from_table(self.meta)
end
if def.sounds and def.sounds.place then
- core.sound_play(def.sounds.place, {pos = np})
+ core.sound_play(def.sounds.place, {pos = np}, true)
end
end
self.object:remove()
@@ -154,7 +154,7 @@ local function convert_to_falling_node(pos, node)
local def = core.registered_nodes[node.name]
if def and def.sounds and def.sounds.fall then
- core.sound_play(def.sounds.fall, {pos = pos})
+ core.sound_play(def.sounds.fall, {pos = pos}, true)
end
obj:get_luaentity():set_node(node, metatable)
@@ -187,7 +187,7 @@ local function drop_attached_node(p)
def.preserve_metadata(pos_copy, node_copy, oldmeta, drops)
end
if def and def.sounds and def.sounds.fall then
- core.sound_play(def.sounds.fall, {pos = p})
+ core.sound_play(def.sounds.fall, {pos = p}, true)
end
core.remove_node(p)
for _, item in pairs(drops) do