Update Fire.cpp

This commit is contained in:
blingu 2020-03-26 17:00:58 +01:00 committed by GitHub
parent 0e91015940
commit edc92a7bcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,7 @@ CFireManager::StartScriptFire(const CVector &pos, CEntity *target, float strengt
bool
CFireManager::IsScriptFireExtinguish(int16 index)
{
return (!m_aFires[index].m_bIsOngoing) ? true : false;
return m_aFires[index].m_bIsOngoing ? false : true;
}
void