diff --git a/src/management/award.c b/src/management/award.c index 98afa42785..90f4d8e719 100644 --- a/src/management/award.c +++ b/src/management/award.c @@ -519,7 +519,7 @@ static int award_is_deserved_most_confusing_layout(int awardType, int activeAwar continue; peepsCounted++; - if ((peep->thoughts[0].var_2 <= 5 && peep->thoughts[0].type == PEEP_THOUGHT_TYPE_LOST) || peep->thoughts[0].type == PEEP_THOUGHT_TYPE_CANT_FIND) + if (peep->thoughts[0].var_2 <= 5 && (peep->thoughts[0].type == PEEP_THOUGHT_TYPE_LOST || peep->thoughts[0].type == PEEP_THOUGHT_TYPE_CANT_FIND)) peepsLost++; } @@ -631,4 +631,4 @@ void award_update_all() if (awards[i].time != 0) if (--awards[i].time == 0) window_invalidate_by_class(WC_PARK_INFORMATION); -} \ No newline at end of file +}