Fixed the last actor speed. It was active mode speed.

This commit is contained in:
Filip Maj 2017-01-03 19:02:35 -05:00
parent 8a0ebe7ec4
commit 4b0ffb3882
4 changed files with 15 additions and 14 deletions

View file

@ -24,7 +24,7 @@ function onEventStarted(player, actor, triggerName, isGoobbue)
player:SetMountState(2);
end
player:ChangeSpeed(0.0, 5.0, 10.0);
player:ChangeSpeed(0.0, 5.0, 10.0, 10.0);
player:ChangeState(15);
else
player:ChangeMusic(player:GetZone().bgmDay);
@ -38,7 +38,7 @@ function onEventStarted(player, actor, triggerName, isGoobbue)
end
player:SetMountState(0);
player:ChangeSpeed(0.0, 2.0, 5.0)
player:ChangeSpeed(0.0, 2.0, 5.0, 5.0)
player:ChangeState(0);
end