1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 15:29:55 +00:00

Fix(cell.cpp): Don't try to update land for interiors

This commit is contained in:
Dave Corley 2024-02-24 13:14:22 -06:00
parent 10eb807e72
commit 86316fa7ab

View file

@ -120,7 +120,7 @@ bool CSVRender::Cell::addObjects(int start, int end)
void CSVRender::Cell::updateLand() void CSVRender::Cell::updateLand()
{ {
if (mLandDeleted) if (mLandDeleted || !mUpdateLand)
return; return;
mUpdateLand = false; mUpdateLand = false;