diff --git a/functions.lua b/functions.lua index 44fb103..c134b23 100644 --- a/functions.lua +++ b/functions.lua @@ -3,9 +3,9 @@ function spears_shot (itemstack, player) local playerpos = player:getpos() local obj = minetest.add_entity({x=playerpos.x,y=playerpos.y+1.5,z=playerpos.z}, spear) local dir = player:get_look_dir() - local sp = .14 - local dr = 0-- .2 - local gravity = 0--9.8 + local sp = 14 + local dr = .3 + local gravity = 9.8 obj:setvelocity({x=dir.x*sp, y=dir.y*sp, z=dir.z*sp}) obj:setacceleration({x=-dir.x*dr, y=-gravity, z=-dir.z*dr}) obj:setyaw(player:get_look_yaw()+math.pi)