fix sound item pickup gain, not so hard

This commit is contained in:
Freedom 2023-10-13 21:11:18 +02:00
parent d706833f21
commit 53c69cbcb9
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ minetest.register_globalstep(function(_)
if tick == true and pool[name] > 0 then
minetest.sound_play("item_drop_pickup", {
pos = pos,
gain = 0.3,
gain = 0.03,
max_hear_distance = 16,
pitch = math.random(70, 110) / 100
})