From dee2d4eecbcf5009c2408098d9c474fae0cf6672 Mon Sep 17 00:00:00 2001 From: Steve Date: Mon, 23 May 2016 09:18:52 +0100 Subject: [PATCH] Set current value = target value when auto completing conditions (hud is inconsistent). --- src/battle/objectives.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/battle/objectives.c b/src/battle/objectives.c index 1d76350..b4eaee0 100644 --- a/src/battle/objectives.c +++ b/src/battle/objectives.c @@ -221,6 +221,8 @@ void completeConditions(void) { if (o->isCondition) { + o->currentValue = o->targetValue; + o->status = OS_COMPLETE; } }