diff --git a/src/game/QuestDef.cpp b/src/game/QuestDef.cpp index 2feaaa152..2e60bb60d 100644 --- a/src/game/QuestDef.cpp +++ b/src/game/QuestDef.cpp @@ -265,7 +265,7 @@ int32 Quest::GetRewOrReqMoney() const bool Quest::IsAllowedInRaid() const { - if (QUEST_TYPE_RAID || Type == QUEST_TYPE_RAID_10 || Type == QUEST_TYPE_RAID_25) + if (Type == QUEST_TYPE_RAID || Type == QUEST_TYPE_RAID_10 || Type == QUEST_TYPE_RAID_25) return true; return sWorld.getConfig(CONFIG_BOOL_QUEST_IGNORE_RAID); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 0da153b5d..78117e66b 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 "10169" + #define REVISION_NR "10170" #endif // __REVISION_NR_H__