mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
UCRP_FINISHTIMELEFT: Flip incorrect less-than to greater-than in condition handling
This commit is contained in:
parent
5b11179213
commit
b4217e1afd
1 changed files with 1 additions and 1 deletions
|
|
@ -643,7 +643,7 @@ boolean M_CheckCondition(condition_t *cn, player_t *player)
|
|||
&& player->exiting
|
||||
&& !(player->pflags & PF_NOCONTEST)
|
||||
&& player->realtime < timelimitintics
|
||||
&& (timelimitintics + extratimeintics + secretextratime - player->realtime) <= (unsigned)cn->requirement);
|
||||
&& (timelimitintics + extratimeintics + secretextratime - player->realtime) >= (unsigned)cn->requirement);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue