mirror of
https://github.com/OpenMW/openmw.git
synced 2025-07-04 23:11:35 +00:00
Consider empty RefId as absent exterior cell
This commit is contained in:
parent
a9c7354338
commit
b7b68bd164
1 changed files with 1 additions and 1 deletions
|
@ -352,7 +352,7 @@ namespace MWWorld
|
||||||
if (bypass && !mStartCell.empty())
|
if (bypass && !mStartCell.empty())
|
||||||
{
|
{
|
||||||
ESM::Position pos;
|
ESM::Position pos;
|
||||||
if (findExteriorPosition(mStartCell, pos).empty())
|
if (!findExteriorPosition(mStartCell, pos).empty())
|
||||||
{
|
{
|
||||||
changeToExteriorCell(pos, true);
|
changeToExteriorCell(pos, true);
|
||||||
adjustPosition(getPlayerPtr(), false);
|
adjustPosition(getPlayerPtr(), false);
|
||||||
|
|
Loading…
Reference in a new issue