Fix deprecated vel and acc arguments of particles

This commit is contained in:
Wuzzy 2017-08-18 23:23:07 +02:00
parent e2442a6283
commit 2243ee5477
2 changed files with 4 additions and 4 deletions

View file

@ -57,8 +57,8 @@ THROWING_ARROW_ENTITY.on_step = function(self, dtime)
minetest.add_particle({
pos = pos,
vel = {x=0, y=0, z=0},
acc = {x=0, y=0, z=0},
velocity = {x=0, y=0, z=0},
acceleration = {x=0, y=0, z=0},
expirationtime = .3,
size = 1,
collisiondetection = false,