mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 09:21:36 +00:00
fix sector updating between TROR bunches, leading to 'being stuck' glitches. Difference: one character.
git-svn-id: https://svn.eduke32.com/eduke32@1966 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
58ba283c45
commit
6e7a13448d
1 changed files with 1 additions and 1 deletions
|
@ -5393,7 +5393,7 @@ HORIZONLY:
|
|||
if (!shrunk || p->jetpack_on==11)
|
||||
tmpdz = jetpackdz;
|
||||
}
|
||||
else if (p->jetpack_on && p->vel.z)
|
||||
else if (!p->jetpack_on && p->vel.z)
|
||||
{
|
||||
tmpdz = p->vel.z;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue