diff options
author | tartalo <none@none> | 2009-11-01 20:50:53 +0100 |
---|---|---|
committer | tartalo <none@none> | 2009-11-01 20:50:53 +0100 |
commit | ba52852ae52dbba0d1932ef0116bc368a599945c (patch) | |
tree | 481ffdbe445863b4b9ce7e90b9beea3de8da4993 | |
parent | 80ac5f6587451520bb2fae52e9881cd4658f1bb1 (diff) |
Delete redundant () on previous patch :P
--HG--
branch : trunk
-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 565ad27a84c..51e5fe6acab 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -20974,7 +20974,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) && zone != 4197 && zone != 4395; // Cold Weather Flying } void Player::learnSpellHighRank(uint32 spellid) |