Fix movement with hold mouse button and stand animation
This commit is contained in:
parent
7b16fafbff
commit
1c77a22735
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ void track_process()
|
|||
|
||||
const auto &player = plr[myplr];
|
||||
|
||||
if (player.AnimInfo.GetFrameToUseForRendering() <= 6 || (!player.IsWalking() && player._pmode != PM_STAND))
|
||||
if (player._pmode != PM_STAND && !(player.IsWalking() && player.AnimInfo.GetFrameToUseForRendering() > 6))
|
||||
return;
|
||||
|
||||
const Point target = player.GetTargetPosition();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue