From 92ca28bf3c1b8a2e0b603d096129f95009f0931a Mon Sep 17 00:00:00 2001 From: Steve Date: Fri, 13 Nov 2015 16:56:53 +0000 Subject: [PATCH] Don't show current / target numbers for conditions. --- src/battle/missionInfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/battle/missionInfo.c b/src/battle/missionInfo.c index 6e76d7b..6aae78b 100644 --- a/src/battle/missionInfo.c +++ b/src/battle/missionInfo.c @@ -108,7 +108,7 @@ static void drawMissionSummary(SDL_Texture *header) } drawText(SCREEN_WIDTH / 2 - 100, y, 22, TA_RIGHT, colors.white, o->description); - if (o->targetValue > 1) + if (o->targetValue > 1 && !o->isCondition) { drawText(SCREEN_WIDTH / 2, y, 22, TA_CENTER, colors.white, "%d / %d", o->currentValue, o->targetValue); }