mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-19 09:31:07 +01:00
Remove minecart handbrake
This commit is contained in:
parent
83c6299cc2
commit
841eac8d58
1 changed files with 0 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue