Boats: Increase maximum velocity to 5n/s

This commit is contained in:
paramat 2016-04-15 10:43:10 +01:00
parent 9ece86cc7a
commit f8e273da15
1 changed files with 4 additions and 4 deletions

View File

@ -159,8 +159,8 @@ function boat.on_step(self, dtime)
self.v = 0
return
end
if math.abs(self.v) > 4.5 then
self.v = 4.5 * get_sign(self.v)
if math.abs(self.v) > 5 then
self.v = 5 * get_sign(self.v)
end
local p = self.object:getpos()
@ -182,8 +182,8 @@ function boat.on_step(self, dtime)
p.y = p.y + 1
if is_water(p) then
local y = self.object:getvelocity().y
if y >= 4.5 then
y = 4.5
if y >= 5 then
y = 5
elseif y < 0 then
new_acce = {x = 0, y = 20, z = 0}
else