From cbfb83376e802c1fa5cd057c549a01e641cfe0f1 Mon Sep 17 00:00:00 2001 From: Steve Date: Sun, 29 May 2016 09:37:27 +0100 Subject: [PATCH] Don't allow SURVIVOR trophy to be earned if the player isn't in a common fighter. --- src/game/trophies.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/trophies.c b/src/game/trophies.c index fd41d97..4c9f6b8 100644 --- a/src/game/trophies.c +++ b/src/game/trophies.c @@ -475,7 +475,7 @@ void awardPostMissionTrophies(void) { awardTrophy("EPIC"); - if (battle.stats[STAT_PLAYER_KILLED] == 0) + if (battle.stats[STAT_PLAYER_KILLED] == 0 && player->flags & EF_COMMON_FIGHTER) { awardTrophy("SURVIVOR"); }