mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-04-05 05:41:28 +02:00
Fix eating/drinking sounds to user
This commit is contained in:
@ -145,10 +145,10 @@ function mcl_hunger.item_eat(hunger_change, replace_with_item, poisontime, poiso
|
|||||||
if foodtype == 3 then
|
if foodtype == 3 then
|
||||||
-- Item is a drink, only play drinking sound (no particle)
|
-- Item is a drink, only play drinking sound (no particle)
|
||||||
minetest.sound_play("survival_thirst_drink", {
|
minetest.sound_play("survival_thirst_drink", {
|
||||||
pos = pos,
|
|
||||||
max_hear_distance = 12,
|
max_hear_distance = 12,
|
||||||
gain = 1.0,
|
gain = 1.0,
|
||||||
pitch = 1 + math.random(-10, 10)*0.005,
|
pitch = 1 + math.random(-10, 10)*0.005,
|
||||||
|
object = user,
|
||||||
})
|
})
|
||||||
else
|
else
|
||||||
-- Assume the item is a food
|
-- Assume the item is a food
|
||||||
@ -184,10 +184,10 @@ function mcl_hunger.item_eat(hunger_change, replace_with_item, poisontime, poiso
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
minetest.sound_play("mcl_hunger_bite", {
|
minetest.sound_play("mcl_hunger_bite", {
|
||||||
pos = pos,
|
|
||||||
max_hear_distance = 12,
|
max_hear_distance = 12,
|
||||||
gain = 1.0,
|
gain = 1.0,
|
||||||
pitch = 1 + math.random(-10, 10)*0.005,
|
pitch = 1 + math.random(-10, 10)*0.005,
|
||||||
|
object = user,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user