mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 19:01:50 +00:00
Merge branch 'fix-lightsnake-checkpoint-cross' into 'master'
Use correct y-coords in lightsnake checkpoint checks See merge request kart-krew-dev/ring-racers-internal!2988
This commit is contained in:
commit
89e415c706
1 changed files with 1 additions and 1 deletions
|
|
@ -463,7 +463,7 @@ static void K_MovePlayerToRespawnPoint(player_t *player)
|
||||||
stepamt -= dist;
|
stepamt -= dist;
|
||||||
|
|
||||||
fixed_t oldx = player->mo->x;
|
fixed_t oldx = player->mo->x;
|
||||||
fixed_t oldy = player->mo->y = dest.y;
|
fixed_t oldy = player->mo->y;
|
||||||
|
|
||||||
// We've reached the destination point,
|
// We've reached the destination point,
|
||||||
P_UnsetThingPosition(player->mo);
|
P_UnsetThingPosition(player->mo);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue