Revert "- Duke: Maintain x/y/z velocity when falling through a portal, such as E1L1's air duct."

This reverts commit 1cb57a813948a494197e7df67dd6f58ae987b7db.
This commit is contained in:
Mitchell Richters 2022-10-08 14:38:21 +11:00 committed by Christoph Oelckers
parent 2c966e35ae
commit 641b22addf

View file

@ -1367,10 +1367,14 @@ void movetransports_d(void)
if ((ps[p].jetpack_on == 0) || (ps[p].jetpack_on && (PlayerInput(p, SB_JUMP))) ||
(ps[p].jetpack_on && PlayerInput(p, SB_CROUCH)))
{
ps[p].opos -= ps[p].pos;
ps[p].pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
ps[p].pos.Z = Owner->spr.pos.Z - (ps[p].jetpack_on && (PlayerInput(p, SB_JUMP) || ps[p].jetpack_on < 11) ? 24 : -24);
ps[p].opos += ps[p].pos;
ps[p].pos.X += Owner->spr.pos.X - act->spr.pos.X;
ps[p].pos.Y += Owner->spr.pos.Y - act->spr.pos.Y;
ps[p].backupxy();
if (ps[p].jetpack_on && (PlayerInput(p, SB_JUMP) || ps[p].jetpack_on < 11))
ps[p].pos.Z = Owner->spr.pos.Z - 24;
else ps[p].pos.Z = Owner->spr.pos.Z + 24;
ps[p].backupz();
auto pa = ps[p].GetActor();
pa->opos = ps[p].pos;