mirror of
https://github.com/OpenMW/openmw.git
synced 2025-05-21 18:41:29 +00:00
Fix removing heightfield from navigator
It's added not as object so it shouldn't be removed as it.
This commit is contained in:
parent
1e7b9fb6a5
commit
6adf7b10ae
1 changed files with 2 additions and 2 deletions
|
@ -397,8 +397,8 @@ namespace MWWorld
|
||||||
|
|
||||||
if (cell->getCell()->isExterior())
|
if (cell->getCell()->isExterior())
|
||||||
{
|
{
|
||||||
if (const auto heightField = mPhysics->getHeightField(cellX, cellY))
|
if (mPhysics->getHeightField(cellX, cellY) != nullptr)
|
||||||
mNavigator.removeObject(DetourNavigator::ObjectId(heightField));
|
mNavigator.removeHeightfield(osg::Vec2i(cellX, cellY));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cell->getCell()->hasWater())
|
if (cell->getCell()->hasWater())
|
||||||
|
|
Loading…
Reference in a new issue