mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Manually merge parts of EDuke32 SVN commit 8243.
This commit is contained in:
parent
53c9d8425c
commit
062850c30a
1 changed files with 3 additions and 1 deletions
|
@ -8163,7 +8163,6 @@ check_enemy_sprite:
|
||||||
pPlayer->pos.z = floorZ - (floorZOffset << 8);
|
pPlayer->pos.z = floorZ - (floorZOffset << 8);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
pPlayer->on_ground = 0;
|
|
||||||
if (RRRA && (pPlayer->on_motorcycle || pPlayer->on_boat) && floorZ - (floorZOffset << 9) > pPlayer->pos.z)
|
if (RRRA && (pPlayer->on_motorcycle || pPlayer->on_boat) && floorZ - (floorZOffset << 9) > pPlayer->pos.z)
|
||||||
{
|
{
|
||||||
if (pPlayer->moto_on_ground)
|
if (pPlayer->moto_on_ground)
|
||||||
|
@ -8239,7 +8238,10 @@ check_enemy_sprite:
|
||||||
pPlayer->moto_turb = 12;
|
pPlayer->moto_turb = 12;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
pPlayer->on_ground = 1;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
pPlayer->on_ground = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue