From 91f8df48c6ce737fde9c4c83919636afca95959a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 12 Jan 2021 20:57:28 +0100 Subject: [PATCH] - Exhumed: changed MoveSectorSprites so it only moves sprites that actually stand on the sector's floor. Since this had no check for z it even moved things floating above a lift or players hanging over a dropoff with the lift below. --- source/games/exhumed/src/object.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/source/games/exhumed/src/object.cpp b/source/games/exhumed/src/object.cpp index e7e306ee3..3788df8d1 100644 --- a/source/games/exhumed/src/object.cpp +++ b/source/games/exhumed/src/object.cpp @@ -683,12 +683,18 @@ int CheckSectorSprites(short nSector, int nVal) // done void MoveSectorSprites(int nSector, int z) { + int newz = sector[nSector].floorz; + int oldz = newz - z; + int minz = std::min(newz, oldz); + int maxz = std::max(newz, oldz); int nSprite; SectIterator it(nSector); while ((nSprite = it.NextIndex()) >= 0) { - if (sprite[nSprite].statnum != 200) { - sprite[nSprite].z += z; + int z = sprite[nSprite].z; + if (sprite[nSprite].statnum != 200 && z >= minz && z <= maxz) + { + sprite[nSprite].z = newz; } } }