Fix @tomangelo2's code style

see 47a8f70f0f
master
krzys-h 2017-05-22 11:11:42 +02:00
parent 11d950221b
commit 108551c199
1 changed files with 5 additions and 5 deletions

View File

@ -2382,11 +2382,11 @@ bool CScriptFunctions::rFire(CBotVar* var, CBotVar* result, int& exception, void
if ( err != ERR_OK ) if ( err != ERR_OK )
{ {
script->m_taskExecutor->StopForegroundTask(); script->m_taskExecutor->StopForegroundTask();
if ( script->m_errMode == ERM_STOP ) if ( script->m_errMode == ERM_STOP )
{ {
exception = err; exception = err;
return false; return false;
} }
return true; return true;
} }
} }