Digicode sound not being globally heard anymore ^^

This commit is contained in:
fwhcat 2019-06-21 09:27:26 +00:00
parent 25d73d8c8d
commit b7acbebd0f
1 changed files with 5 additions and 1 deletions

View File

@ -1388,7 +1388,11 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
fields.open and fields.code ~= context.code then
sound_index = 4
end
minetest.sound_play(sounds[sound_index])
-- play sound at context position
minetest.sound_play(sounds[sound_index],
context.pos,
max_hear_distance = 40
)
context[player:get_player_name()] = nil -- we don't need it anymore
end)