mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-16 08:42:23 +00:00
fix for cells that have no region.
This commit is contained in:
parent
ae77e7b0d8
commit
0afda15ce9
@ -447,7 +447,8 @@ void WindowManager::changeCell(MWWorld::Ptr::CellStore* cell)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
const ESM::Region* region = MWBase::Environment::get().getWorld()->getStore().regions.search(cell->cell->region);
|
const ESM::Region* region = MWBase::Environment::get().getWorld()->getStore().regions.search(cell->cell->region);
|
||||||
name = region->name;
|
if (region)
|
||||||
|
name = region->name;
|
||||||
}
|
}
|
||||||
|
|
||||||
map->setCellName( name );
|
map->setCellName( name );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user