diff --git a/src/game/Player.cpp b/src/game/Player.cpp index a465389b2..b48f2911e 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -14601,7 +14601,7 @@ bool Player::HasQuestForItem( uint32 itemid ) const continue; // hide quest if player is in raid-group and quest is no raid quest - if (GetGroup() && GetGroup()->isRaidGroup() && qinfo->IsAllowedInRaid() && !InBattleGround()) + if (GetGroup() && GetGroup()->isRaidGroup() && !qinfo->IsAllowedInRaid() && !InBattleGround()) continue; // There should be no mixed ReqItem/ReqSource drop @@ -19909,7 +19909,7 @@ bool Player::HasQuestForGO(int32 GOId) const if(!qinfo) continue; - if(GetGroup() && GetGroup()->isRaidGroup() && qinfo->IsAllowedInRaid()) + if(GetGroup() && GetGroup()->isRaidGroup() && !qinfo->IsAllowedInRaid()) continue; for (int j = 0; j < QUEST_OBJECTIVES_COUNT; ++j) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index d6cb66c9d..d1e383229 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10136" + #define REVISION_NR "10137" #endif // __REVISION_NR_H__