diff --git a/src/game/QuestDef.h b/src/game/QuestDef.h index aa2373162..0fe16eec7 100644 --- a/src/game/QuestDef.h +++ b/src/game/QuestDef.h @@ -134,10 +134,10 @@ enum __QuestFlags QUEST_FLAGS_HIDDEN_REWARDS = 0x00000200, // Items and money rewarded only sent in SMSG_QUESTGIVER_OFFER_REWARD (not in SMSG_QUESTGIVER_QUEST_DETAILS or in client quest log(SMSG_QUEST_QUERY_RESPONSE)) QUEST_FLAGS_AUTO_REWARDED = 0x00000400, // These quests are automatically rewarded on quest complete and they will never appear in quest log client side. QUEST_FLAGS_TBC_RACES = 0x00000800, // Not used currently: Blood elf/Draenei starting zone quests - QUEST_FLAGS_DAILY = 0x00001000, // Used to know quest is Daily one + QUEST_FLAGS_DAILY = 0x00001000, // Daily quest. Can be done once a day. Quests reset at regular intervals for all players. QUEST_FLAGS_FLAGS_PVP = 0x00002000, // activates PvP on accept QUEST_FLAGS_UNK4 = 0x00004000, // ? Membership Card Renewal - QUEST_FLAGS_WEEKLY = 0x00008000, // Not used currently: Weekly quests + QUEST_FLAGS_WEEKLY = 0x00008000, // Weekly quest. Can be done once a week. Quests reset at regular intervals for all players. QUEST_FLAGS_AUTOCOMPLETE = 0x00010000, // auto complete QUEST_FLAGS_UNK5 = 0x00020000, // has something to do with ReqItemId and SrcItemId QUEST_FLAGS_UNK6 = 0x00040000, // use Objective text as Complete text diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index fe6d694e4..7ee0bf0ac 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 "9699" + #define REVISION_NR "9700" #endif // __REVISION_NR_H__