This commit is contained in:
Andrea Plati 2015-10-13 22:04:14 +02:00
parent 4826788d02
commit 2411a9d433
1 changed files with 3 additions and 3 deletions

View File

@ -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)