From 6f62abc1efdebc966af8606265a1ef2102425c5b Mon Sep 17 00:00:00 2001 From: toaster Date: Sat, 11 Mar 2023 20:12:47 +0000 Subject: [PATCH] UCRP_FINISHPLACE: Don't permit messed up position of 0 --- src/m_cond.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/m_cond.c b/src/m_cond.c index bd92b97e0..0013a8398 100644 --- a/src/m_cond.c +++ b/src/m_cond.c @@ -812,6 +812,7 @@ boolean M_CheckCondition(condition_t *cn, player_t *player) return (player->exiting && !(player->pflags & PF_NOCONTEST) && M_NotFreePlay(player) + && player->position != 0 && player->position <= cn->requirement); case UCRP_FINISHPLACEEXACT: return (player->exiting