Remove minecart handbrake

This commit is contained in:
Wuzzy 2017-01-05 15:41:21 +01:00
parent 83c6299cc2
commit 841eac8d58
1 changed files with 0 additions and 4 deletions

View File

@ -206,10 +206,6 @@ function mcl_minecarts.cart:on_step(dtime)
acc = acc + (speed_mod * 8)
else
acc = acc - 0.4
-- Handbrake
if ctrl and ctrl.down and math.abs(vel.x + vel.z) > 1.2 then
acc = acc - 1.2
end
end
new_acc = vector.multiply(dir, acc)