Fix assignment to unassigned global

This commit is contained in:
rubenwardy 2014-12-28 17:16:10 +00:00
parent c8e8bc8f41
commit 67c1a38987

View File

@ -88,7 +88,7 @@ minetest.register_abm({
bullet:setvelocity({x=calc.x * ARROW_VELOCITY,y=calc.y * ARROW_VELOCITY,z=calc.z * ARROW_VELOCITY})
-- Play sound
music_handle=minetest.sound_play("laser",{pos = pos, gain = 1.0, max_hear_distance = 50,})
minetest.sound_play("laser", {pos = pos, gain = 1.0, max_hear_distance = 50,})
end
end
end