mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 23:29:02 +00:00
Update Fire.cpp
This commit is contained in:
parent
0e91015940
commit
edc92a7bcc
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@ CFireManager::StartScriptFire(const CVector &pos, CEntity *target, float strengt
|
||||||
bool
|
bool
|
||||||
CFireManager::IsScriptFireExtinguish(int16 index)
|
CFireManager::IsScriptFireExtinguish(int16 index)
|
||||||
{
|
{
|
||||||
return (!m_aFires[index].m_bIsOngoing) ? true : false;
|
return m_aFires[index].m_bIsOngoing ? false : true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue