summaryrefslogtreecommitdiff
path: root/boost_cart/cart_entity.lua
diff options
context:
space:
mode:
Diffstat (limited to 'boost_cart/cart_entity.lua')
-rw-r--r--boost_cart/cart_entity.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/boost_cart/cart_entity.lua b/boost_cart/cart_entity.lua
index 07a7d69..1633758 100644
--- a/boost_cart/cart_entity.lua
+++ b/boost_cart/cart_entity.lua
@@ -264,8 +264,12 @@ function cart_entity:on_step(dtime)
end
end
- -- Slow down or speed up, depending on Y direction
- acc = acc + dir.y * -2
+ if acc then
+ -- Slow down or speed up, depending on Y direction
+ acc = acc + dir.y * -2
+ else
+ acc = 0
+ end
if self.old_dir.y ~= 1 and not self.punched then
-- Stop the cart swing between two rail parts (handbrake)