diff options
author | tartalo <none@none> | 2009-11-02 21:05:54 +0100 |
---|---|---|
committer | tartalo <none@none> | 2009-11-02 21:05:54 +0100 |
commit | bcfff09c74ec3e7cc6bd4c42938701c501f3bfd7 (patch) | |
tree | 18140ff9d2ec1dfa1d56424a704242be793e2d7d /src/game/Player.cpp | |
parent | ae2a36d13e32e7aae945c8cc1862b340f4669744 (diff) |
*Implementation of 'No Fly Zone' (Dalaran and Wintergrasp), by Spp
--HG--
branch : trunk
Diffstat (limited to 'src/game/Player.cpp')
-rw-r--r-- | src/game/Player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index a1d82e22c8d..8f5ae3ac756 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -20972,7 +20972,7 @@ bool Player::IsKnowHowFlyIn(uint32 mapid, uint32 zone) const { // continent checked in SpellMgr::GetSpellAllowedInLocationError at cast and area update uint32 v_map = GetVirtualMapForMapAndZone(mapid, zone); - return v_map != 571 || HasSpell(54197) && zone != 4197 && zone != 4395; // Cold Weather Flying + return v_map != 571 || HasSpell(54197); // Cold Weather Flying } void Player::learnSpellHighRank(uint32 spellid) |