Don't allow SURVIVOR trophy to be earned if the player isn't in a common fighter.

This commit is contained in:
Steve 2016-05-29 09:37:27 +01:00
parent b723d42dd4
commit cbfb83376e
1 changed files with 1 additions and 1 deletions

View File

@ -475,7 +475,7 @@ void awardPostMissionTrophies(void)
{ {
awardTrophy("EPIC"); awardTrophy("EPIC");
if (battle.stats[STAT_PLAYER_KILLED] == 0) if (battle.stats[STAT_PLAYER_KILLED] == 0 && player->flags & EF_COMMON_FIGHTER)
{ {
awardTrophy("SURVIVOR"); awardTrophy("SURVIVOR");
} }