[DiscordArchive] well what expansion are we talking about?
[DiscordArchive] well what expansion are we talking about?
Archived author: M'Dic • Posted: 2022-08-01T22:03:38.547000+00:00
Original source
```cpp
bool Player::CanFlyInZone(uint32 mapid, uint32 zone, SpellInfo const* bySpell) const
{
// continent checked in SpellInfo::CheckLocation at cast and area update
uint32 v_map = GetVirtualMapForMapAndZone(mapid, zone);
if (v_map == 571 && !bySpell->HasAttribute(SPELL_ATTR7_IGNORE_COLD_WEATHER_FLYING))
if (!HasSpell(54197)) // 54197 = Cold Weather Flying
return false;
return true;
}```
Archived author: M'Dic • Posted: 2022-08-01T22:03:46.435000+00:00
Original source
i see that
Archived author: M'Dic • Posted: 2022-08-01T22:04:33.356000+00:00
Original source
then this
```cpp
uint32 GetVirtualMapForMapAndZone(uint32 mapid, uint32 zoneId)
{
if (mapid != 530 && mapid != 571) // speed for most cases
return mapid;
if (WorldMapAreaEntry const* wma = sWorldMapAreaStore.LookupEntry(zoneId))
return wma->DisplayMapID >= 0 ? wma->DisplayMapID : wma->MapID;
return mapid;
}```
Archived author: M'Dic • Posted: 2022-08-01T22:05:47.830000+00:00
Original source
so imma look for 4395 from your ss
Archived author: M'Dic • Posted: 2022-08-01T22:08:16.225000+00:00
Original source
not seeing anything 4395 besides a enum for searching for players in dalaran,
Archived author: Krutok • Posted: 2022-08-01T22:10:57.704000+00:00
Original source
You also get a debuff in dalaran. It's hardcoded https://www.wowhead.com/spell=58600/rest...light-area I have already disabled this one- can fly in from the landing pad but not mount inside
[Embed: Restricted Flight Area]
The air over Dalaran is protected. You will be ejected in 5.2 sec. In the Uncategorized Spells category. Always up to date with the latest patch.
https://www.wowhead.com/spell=58600/rest...light-area
Archived author: M'Dic • Posted: 2022-08-01T22:13:35.784000+00:00
Original source
i see two cases of spell 58600 to restrict flight
Archived author: Krutok • Posted: 2022-08-01T22:14:33.757000+00:00
Original source
can fly in from the landing pad but not mount inside
Archived author: Krutok • Posted: 2022-08-01T22:14:46.654000+00:00
Original source
this is the problem ^^
Archived author: Krutok • Posted: 2022-08-01T22:15:05.378000+00:00
Original source
restricted spell i have deleted from the coresource