Correcly unlock Teeka's mission.
This commit is contained in:
parent
c240449530
commit
151376fc52
|
@ -165,7 +165,7 @@ void initHub(void)
|
||||||
{
|
{
|
||||||
teeka = mission;
|
teeka = mission;
|
||||||
}
|
}
|
||||||
else if (mission->status == MS_LOCKED)
|
else if (mission->status != MS_COMPLETE)
|
||||||
{
|
{
|
||||||
unlockTeeka = 0;
|
unlockTeeka = 0;
|
||||||
}
|
}
|
||||||
|
@ -195,9 +195,18 @@ void initHub(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!unlockTeeka && teeka != NULL)
|
if (teeka != NULL)
|
||||||
{
|
{
|
||||||
teeka->status = MS_LOCKED;
|
if (unlockTeeka)
|
||||||
|
{
|
||||||
|
unlockMission("teeka");
|
||||||
|
|
||||||
|
teeka->status = MS_INCOMPLETE;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
teeka->status = MS_LOCKED;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
awardMissionTrophies();
|
awardMissionTrophies();
|
||||||
|
|
Loading…
Reference in New Issue