Removed resumingMission field.
This commit is contained in:
parent
46d6ce1cd6
commit
25cf4f2814
|
@ -604,8 +604,6 @@ void resetAtCheckpoint(void)
|
|||
changeSprite(walkSprite);
|
||||
world.bob->environment = ENV_AIR;
|
||||
|
||||
if (!game.isResumingMission)
|
||||
{
|
||||
world.bob->immuneTimer = FPS * 2;
|
||||
addTeleportStars((Entity*)world.bob);
|
||||
if (world.state == WS_IN_PROGRESS)
|
||||
|
@ -613,7 +611,6 @@ void resetAtCheckpoint(void)
|
|||
playSound(SND_APPEAR, CH_ANY);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void die(void)
|
||||
{
|
||||
|
|
|
@ -366,7 +366,6 @@ typedef struct {
|
|||
int totalKeys;
|
||||
unsigned int stats[STAT_MAX];
|
||||
char worldId[MAX_NAME_LENGTH];
|
||||
int isResumingMission;
|
||||
int isComplete;
|
||||
Tuple keys[MAX_KEY_TYPES];
|
||||
Tuple missionStatusHead, *missionStatusTail;
|
||||
|
|
|
@ -100,11 +100,6 @@ void initWorld(void)
|
|||
playMusic(1);
|
||||
}
|
||||
|
||||
if (!game.isResumingMission)
|
||||
{
|
||||
game.stats[STAT_MISSIONS_PLAYED]++;
|
||||
}
|
||||
|
||||
world.bob->flags |= EF_GONE;
|
||||
|
||||
app.delegate.logic = logic;
|
||||
|
|
Loading…
Reference in New Issue