Hammer sound bugfix

This commit is contained in:
Joachim Stolberg 2017-06-20 23:11:36 +02:00
parent 76c0b3ea71
commit 3f0be0f7f6
2 changed files with 3 additions and 1 deletions

View File

@ -39,7 +39,8 @@ gravelsieve.handler = function(itemstack, user, pointed_thing)
minetest.sound_play({ minetest.sound_play({
name="default_dig_crumbly"},{ name="default_dig_crumbly"},{
gain=1, gain=1,
max_hear_distance=20, pos=pos,
max_hear_distance=4,
loop=false}) loop=false})
end end

View File

@ -23,6 +23,7 @@
2017-06-17 v0.04 * Support for manual and automatic gravel sieve 2017-06-17 v0.04 * Support for manual and automatic gravel sieve
* Rarity now configurable * Rarity now configurable
* Output is 50% gravel and 50% sieved gravel * Output is 50% gravel and 50% sieved gravel
2017-06-20 v0.05 * Hammer sound bugfix
]]-- ]]--