Fixed music player

This commit is contained in:
Carter Kolwey 2014-01-10 21:57:16 -06:00 committed by ShadowNinja
parent dc324816db
commit ebc114df71
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ local music_player_formspec =
"label[4,0;Current track --]"
local function play_track(pos, track)
return minetest.sound_play("technic_track"..track,
return minetest.sound_play("technic_track"..tostring(track),
{pos = pos, gain = 1.0, loop = true, max_hear_distance = 72,})
end