mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
[9689] Fixed typo in daily/weekly flags conflict check.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
c56000b666
commit
724fc87332
2 changed files with 2 additions and 2 deletions
|
|
@ -3425,7 +3425,7 @@ void ObjectMgr::LoadQuests()
|
||||||
if (qinfo->QuestFlags & QUEST_FLAGS_DAILY && qinfo->QuestFlags & QUEST_FLAGS_WEEKLY)
|
if (qinfo->QuestFlags & QUEST_FLAGS_DAILY && qinfo->QuestFlags & QUEST_FLAGS_WEEKLY)
|
||||||
{
|
{
|
||||||
sLog.outErrorDb("Weekly Quest %u is marked as daily quest in `QuestFlags`, removed daily flag.",qinfo->GetQuestId());
|
sLog.outErrorDb("Weekly Quest %u is marked as daily quest in `QuestFlags`, removed daily flag.",qinfo->GetQuestId());
|
||||||
qinfo->QuestFlags &= QUEST_FLAGS_DAILY;
|
qinfo->QuestFlags &= ~QUEST_FLAGS_DAILY;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (qinfo->QuestFlags & QUEST_FLAGS_DAILY)
|
if (qinfo->QuestFlags & QUEST_FLAGS_DAILY)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9688"
|
#define REVISION_NR "9689"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue