Don't allow SURVIVOR trophy to be earned if the player isn't in a common fighter.
This commit is contained in:
parent
b723d42dd4
commit
cbfb83376e
|
@ -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");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue