mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Self-review: Fix inverted before-exiting check for FellOff
This commit is contained in:
parent
22bef38562
commit
7604235c00
1 changed files with 1 additions and 1 deletions
|
|
@ -2430,7 +2430,7 @@ static boolean P_KillPlayer(player_t *player, mobj_t *inflictor, mobj_t *source,
|
|||
case DMG_DEATHPIT:
|
||||
// Fell off the stage
|
||||
if (player->roundconditions.fell_off == false
|
||||
&& beforeexit == false)
|
||||
&& beforeexit == true)
|
||||
{
|
||||
player->roundconditions.fell_off = true;
|
||||
player->roundconditions.checkthisframe = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue