mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-07-12 08:51:44 +00:00
[Server] Initialize interiors correctly if exterior 0, 0 has been loaded
This commit is contained in:
parent
cca4991e74
commit
499c7db121
1 changed files with 9 additions and 2 deletions
|
@ -86,8 +86,15 @@ Cell *CellController::addCell(ESM::Cell cellData)
|
||||||
auto it = find_if(cells.begin(), cells.end(), [cellData](const Cell *c) {
|
auto it = find_if(cells.begin(), cells.end(), [cellData](const Cell *c) {
|
||||||
// Currently we cannot compare because plugin lists can be loaded in different order
|
// Currently we cannot compare because plugin lists can be loaded in different order
|
||||||
//return c->cell.sRecordId == cellData.sRecordId;
|
//return c->cell.sRecordId == cellData.sRecordId;
|
||||||
return c->cell.isExterior() ? (c->cell.mData.mX == cellData.mData.mX && c->cell.mData.mY == cellData.mData.mY) :
|
if (c->cell.isExterior() && cellData.isExterior())
|
||||||
(c->cell.mName == cellData.mName);
|
{
|
||||||
|
if (c->cell.mData.mX == cellData.mData.mX && c->cell.mData.mY == cellData.mData.mY)
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (c->cell.mName == cellData.mName)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
Cell *cell;
|
Cell *cell;
|
||||||
|
|
Loading…
Reference in a new issue