From ce9db25ed7cca89de14b9c849e5c7e24458ae1e8 Mon Sep 17 00:00:00 2001 From: Steve Date: Sun, 25 Mar 2018 15:28:20 +0100 Subject: [PATCH] When returning to a mission, use the full target value. --- src/world/objectives.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/objectives.c b/src/world/objectives.c index 54b6cef..bf0a9eb 100644 --- a/src/world/objectives.c +++ b/src/world/objectives.c @@ -52,7 +52,7 @@ void initObjectives(void) } } - if (o->required && world.isReturnVisit) + if (world.isReturnVisit) { o->targetValue = o->totalValue; o->required = 0;