Prevent from getting suck in walls while moving up

This commit is contained in:
SmallJoker 2015-03-30 20:49:56 +02:00
parent 159d4ec603
commit 79905e47f4
1 changed files with 2 additions and 1 deletions

View File

@ -117,9 +117,11 @@ end
function boost_cart.cart:on_step(dtime)
local vel = self.object:getvelocity()
local update = {}
if self.punched then
vel = vector.add(vel, self.velocity)
self.object:setvelocity(vel)
self.old_dir.y = 0
elseif vector.equals(vel, {x=0, y=0, z=0}) then
return
end
@ -134,7 +136,6 @@ function boost_cart.cart:on_step(dtime)
end
end
local update = {}
local ctrl, player = nil, nil
if self.driver then
player = minetest.get_player_by_name(self.driver)