1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-31 09:45:40 +00:00

Fix(cell.cpp): never try to update land for interiors

This commit is contained in:
Dave Corley 2023-12-09 17:18:57 -06:00
parent 09f41c9464
commit 0ba2e569d9

View file

@ -118,7 +118,7 @@ bool CSVRender::Cell::addObjects(int start, int end)
void CSVRender::Cell::updateLand()
{
if (!mUpdateLand || mLandDeleted)
if (!mUpdateLand || mLandDeleted || !mId.startsWith("#"))
return;
mUpdateLand = false;