Use more efficient position setting. For Z, also adjust for bumper mobj scale.

This commit is contained in:
mazmazz 2018-08-15 18:50:28 -04:00
parent 55d2da2201
commit 67da64a064
1 changed files with 5 additions and 1 deletions

View File

@ -6180,7 +6180,11 @@ static void P_NiGHTSMovement(player_t *player)
// Center player to bumper here because if you try to set player's position in P_TouchSpecialThing case MT_NIGHTSBUMPER,
// that position is fudged in the time between that routine in the previous tic
// and reaching here in the current tic
P_TeleportMove(player->mo, player->mo->hnext->x, player->mo->hnext->y, player->mo->hnext->z + (player->mo->hnext->height/4));
P_UnsetThingPosition(player->mo);
player->mo->x = player->mo->hnext->x;
player->mo->y = player->mo->hnext->y;
player->mo->z = player->mo->hnext->z + FixedMul(player->mo->hnext->height/4, player->mo->hnext->scale);
P_SetThingPosition(player->mo);
P_SetTarget(&player->mo->hnext, NULL);
}