diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-02-03 01:47:45 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-02-03 01:47:45 +0100 |
commit | adf07aab47ef484ca39df707920aaded8f826777 (patch) | |
tree | 24c9fc871228df9b1513d94463f03dc19ee38653 /src/control/Script2.cpp | |
parent | Merge pull request #1001 from Sergeanur/animNames (diff) | |
download | re3-adf07aab47ef484ca39df707920aaded8f826777.tar re3-adf07aab47ef484ca39df707920aaded8f826777.tar.gz re3-adf07aab47ef484ca39df707920aaded8f826777.tar.bz2 re3-adf07aab47ef484ca39df707920aaded8f826777.tar.lz re3-adf07aab47ef484ca39df707920aaded8f826777.tar.xz re3-adf07aab47ef484ca39df707920aaded8f826777.tar.zst re3-adf07aab47ef484ca39df707920aaded8f826777.zip |
Diffstat (limited to '')
-rw-r--r-- | src/control/Script2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control/Script2.cpp b/src/control/Script2.cpp index 210b9327..5c953011 100644 --- a/src/control/Script2.cpp +++ b/src/control/Script2.cpp @@ -1156,7 +1156,7 @@ int8 CRunningScript::ProcessCommands400To499(int32 command) #ifdef FIX_BUGS AnimationId anim = pVehicle->GetDriverAnim(); #else - AnimationId anim = pVehicle->bLowVehicle ? ANIM_CAR_LSIT : ANIM_CAR_SIT; + AnimationId anim = pVehicle->bLowVehicle ? ANIM_STD_CAR_SIT_LO : ANIM_STD_CAR_SIT; #endif pPed->m_pVehicleAnim = CAnimManager::BlendAnimation(pPed->GetClump(), ASSOCGRP_STD, anim, 100.0f); pPed->StopNonPartialAnims(); |