fix(Core/Spells): Dismount from flying mount if teleported to Nothrend without Cold Weather Flying spell. (#8524)

Fixes #5660
This commit is contained in:
UltraNix
2021-10-20 10:29:58 +02:00
committed by GitHub
parent 1ec612e65b
commit fb1e750de2
2 changed files with 7 additions and 19 deletions

View File

@@ -538,7 +538,7 @@ struct AreaTableEntry
[[nodiscard]] bool IsFlyable() const
{
return flags & AREA_FLAG_OUTLAND && !(flags & AREA_FLAG_NO_FLY_ZONE);
return flags & AREA_FLAG_OUTLAND;
}
};