From 9d304846d50b3a4769d95431fa45ae41bbd30353 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Sun, 31 Mar 2024 15:35:21 -0700 Subject: [PATCH] Allow UCRP_FINISHGRADE to fire when skipping tally --- src/m_cond.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/m_cond.c b/src/m_cond.c index 117bf3d1d..436db7dcf 100644 --- a/src/m_cond.c +++ b/src/m_cond.c @@ -1805,7 +1805,7 @@ boolean M_CheckCondition(condition_t *cn, player_t *player) && M_NotFreePlay() && (player->tally.active == true) && (player->tally.state >= TALLY_ST_GRADE_APPEAR) - && (player->tally.state < TALLY_ST_DONE) + && (player->tally.state <= TALLY_ST_DONE) && (player->tally.rank >= cn->requirement)); case UCRP_FINISHTIME: return (player->exiting