Merge pull request 'fix crash' (#121) from superfloh247/MineClone5:master into master

Reviewed-on: MineClone5/MineClone5#121
This commit is contained in:
kay27 2022-01-20 15:43:30 +00:00
commit 67faaeb79d
1 changed files with 2 additions and 2 deletions

View File

@ -278,7 +278,7 @@ function boat.on_step(self, dtime, moveresult)
return
end
local yaw = self.object:get_yaw()
if ctrl.up then
if ctrl and ctrl.up then
-- Forwards
self._v = self._v + 0.1 * v_factor
@ -287,7 +287,7 @@ function boat.on_step(self, dtime, moveresult)
self.object:set_animation({x=0, y=40}, paddling_speed, 0, true)
self._animation = 1
end
elseif ctrl.down then
elseif ctrl and ctrl.down then
-- Backwards
self._v = self._v - 0.1 * v_factor