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

@ -9,5 +9,5 @@ function onTrigger(player, argc, stop, walk, run)
walk = tonumber(walk) or 2;
run = tonumber(run) or 5;
player:ChangeSpeed(stop, walk, run);
player:ChangeSpeed(stop, walk, run, run);
end;