diff --git a/Tactical/Handle UI.cpp b/Tactical/Handle UI.cpp index b4a0c29c..f8ac8bbd 100644 --- a/Tactical/Handle UI.cpp +++ b/Tactical/Handle UI.cpp @@ -6217,8 +6217,12 @@ UINT32 UIHandleJumpOver( UI_EVENT *pUIEvent ) // Get direction to goto.... ubDirection = GetDirectionFromGridNo( usMapPos, pSoldier ); - pSoldier->flags.fDontChargeTurningAPs = TRUE; + // sevenfm: if soldier is prone, change to standing + if (gAnimControl[pSoldier->usAnimState].ubEndHeight == ANIM_PRONE) + UIHandleSoldierStanceChange(pSoldier->ubID, ANIM_CROUCH); + // sevenfm: first change to stationary + pSoldier->SoldierGotoStationaryStance(); pSoldier->EVENT_SetSoldierDesiredDirection(ubDirection); pSoldier->flags.fTurningUntilDone = TRUE; // ATE: Reset flag to go back to prone... @@ -6228,7 +6232,6 @@ UINT32 UIHandleJumpOver( UI_EVENT *pUIEvent ) else pSoldier->usPendingAnimation = JUMP_OVER_BLOCKING_PERSON; - return( GAME_SCREEN ); }