mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-12-29 15:23:02 +05:00
Fix Phoenix blower not animating when reversing
This commit is contained in:
parent
ebceda7575
commit
bd7a67d0a4
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ void CAutomobile::ProcessPhoenixBlower( int32_t modelID )
|
||||||
}
|
}
|
||||||
|
|
||||||
float finalAngle = 0.0f;
|
float finalAngle = 0.0f;
|
||||||
if ( m_fGasPedal > 0.0f )
|
if ( std::abs(m_fGasPedal) > 0.0f )
|
||||||
{
|
{
|
||||||
if ( m_fSpecialComponentAngle < 1.3f )
|
if ( m_fSpecialComponentAngle < 1.3f )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue