From e66960d9fcd92f5cc323842219196047fe2c5a08 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 30 Jan 2021 11:22:46 +1100 Subject: [PATCH] - Exhumed: Ensure ox/oy/oz sprite positions are set when warping to coordinates. --- source/games/exhumed/src/osdcmds.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/games/exhumed/src/osdcmds.cpp b/source/games/exhumed/src/osdcmds.cpp index 91ad52f39..2c2bfbcd7 100644 --- a/source/games/exhumed/src/osdcmds.cpp +++ b/source/games/exhumed/src/osdcmds.cpp @@ -39,9 +39,9 @@ void GameInterface::WarpToCoords(int x, int y, int z, int ang, int horz) Player *nPlayer = &PlayerList[nLocalPlayer]; spritetype *pSprite = &sprite[nPlayer->nSprite]; - pSprite->x = x; - pSprite->y = y; - pSprite->z = z; + pSprite->ox = pSprite->x = x; + pSprite->oy = pSprite->y = y; + pSprite->oz = pSprite->z = z; if (ang != INT_MIN) {