This commit is contained in:
rnd1 2016-04-27 12:44:40 +02:00
parent fd363c798f
commit 472a720f74
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ local grinder_process = function(pos)
--take 1 item from src inventory for each activation
stack=stack:take_item(1); inv:remove_item("src", stack)
minetest.sound_play("grinder", {pos=pos,gain=0.5,max_hear_distance = 8,})
minetest.sound_play("grinder", {pos=pos,gain=0.5,max_hear_distance = 16,})
fuel = fuel-def[1]; -- burn fuel
meta:set_float("fuel",fuel);

View File

@ -102,7 +102,7 @@ local recycler_process = function(pos)
--take 1 item from src inventory for each activation
stack=stack:take_item(1); inv:remove_item("src", stack)
minetest.sound_play("recycler", {pos=pos,gain=0.5,max_hear_distance = 8,})
minetest.sound_play("recycler", {pos=pos,gain=0.5,max_hear_distance = 16,})
fuel = fuel-1; -- burn fuel on succesful operation