1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 22:23:51 +00:00

Bug #772: Do not show door markers for disabled doors

This commit is contained in:
scrawl 2014-05-11 15:22:46 +02:00
parent 961c4d4dc4
commit 7428511ea0

View file

@ -1491,6 +1491,9 @@ namespace MWWorld
{
MWWorld::LiveCellRef<ESM::Door>& ref = *it;
if (!ref.mData.isEnabled())
continue;
if (ref.mRef.mTeleport)
{
World::DoorMarker newMarker;