Manual mission complete bug fix.
This commit is contained in:
parent
41aff3ee3c
commit
cda791cfe8
|
@ -20,6 +20,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
#include "objectives.h"
|
||||
|
||||
static int fireObjectivesComplete;
|
||||
|
||||
void doObjectives(void)
|
||||
{
|
||||
int objectiveFailed;
|
||||
|
@ -76,12 +78,20 @@ void doObjectives(void)
|
|||
|
||||
if (battle.status == MS_IN_PROGRESS)
|
||||
{
|
||||
if (!battle.manualComplete && !hasHidden && battle.numObjectivesTotal > 0 && battle.numObjectivesComplete == battle.numObjectivesTotal)
|
||||
if (!hasHidden && battle.numObjectivesTotal > 0 && battle.numObjectivesComplete == battle.numObjectivesTotal)
|
||||
{
|
||||
if (fireObjectivesComplete)
|
||||
{
|
||||
runScriptFunction("ALL_OBJECTIVES_COMPLETE");
|
||||
|
||||
fireObjectivesComplete = 0;
|
||||
}
|
||||
|
||||
if (!battle.manualComplete)
|
||||
{
|
||||
completeMission();
|
||||
}
|
||||
}
|
||||
|
||||
if (objectiveFailed)
|
||||
{
|
||||
|
@ -290,4 +300,6 @@ void loadObjectives(cJSON *node)
|
|||
node = node->next;
|
||||
}
|
||||
}
|
||||
|
||||
fireObjectivesComplete = 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue