mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-21 15:11:33 +00:00
Fix(cell.cpp): never try to update land for interiors
This commit is contained in:
parent
dd7a2f22d1
commit
f565730a9a
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ bool CSVRender::Cell::addObjects(int start, int end)
|
||||||
|
|
||||||
void CSVRender::Cell::updateLand()
|
void CSVRender::Cell::updateLand()
|
||||||
{
|
{
|
||||||
if (!mUpdateLand || mLandDeleted)
|
if (!mUpdateLand || mLandDeleted || !mId.startsWith("#"))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
mUpdateLand = false;
|
mUpdateLand = false;
|
||||||
|
|
Loading…
Reference in a new issue