diff --git a/source/games/exhumed/src/object.cpp b/source/games/exhumed/src/object.cpp index 3788df8d1..35e07b854 100644 --- a/source/games/exhumed/src/object.cpp +++ b/source/games/exhumed/src/object.cpp @@ -692,7 +692,7 @@ void MoveSectorSprites(int nSector, int z) while ((nSprite = it.NextIndex()) >= 0) { int z = sprite[nSprite].z; - if (sprite[nSprite].statnum != 200 && z >= minz && z <= maxz) + if ((sprite[nSprite].statnum != 200 && z >= minz && z <= maxz) || sprite[nSprite].statnum >= 900) { sprite[nSprite].z = newz; }