From 8c3a31b888d7e5a7bb577d318deeb18b337b7980 Mon Sep 17 00:00:00 2001 From: Steve Date: Fri, 29 Apr 2016 12:13:00 +0100 Subject: [PATCH] Can't use isSol here. --- 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 c2a9ac0..0e2e131 100644 --- a/src/game/trophies.c +++ b/src/game/trophies.c @@ -461,7 +461,7 @@ void awardPostMissionTrophies(void) } } - if (player->guns[0].type && player->missiles && !game->starSystem->isSol && !battle.stats[STAT_SHOTS_FIRED] && !battle.stats[STAT_MISSILES_FIRED]) + if (player->guns[0].type && player->missiles && strcmp(game.selectedStarSystem, "Sol") && !battle.stats[STAT_SHOTS_FIRED] && !battle.stats[STAT_MISSILES_FIRED]) { awardTrophy("PACIFIST"); }