diff options
author | Brian <runningnak3d@gmail.com> | 2010-07-27 09:56:30 -0600 |
---|---|---|
committer | Brian <runningnak3d@gmail.com> | 2010-07-27 09:56:30 -0600 |
commit | 57947ac30379d9a2d820d1ae3ad8e567908142fd (patch) | |
tree | a87d7dcd5883ab575cba3b603058a76db10c6aac /src | |
parent | 0849044f6f2429cad12d195053c8c45e5a5048d0 (diff) |
* Add QUEST_TRINITY_FLAGS_AUTO_ACCEPT to list of allowed SpecialFlags
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Quests/QuestDef.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Quests/QuestDef.h b/src/server/game/Quests/QuestDef.h index c36954ea3d2..f524b7935cb 100644 --- a/src/server/game/Quests/QuestDef.h +++ b/src/server/game/Quests/QuestDef.h @@ -148,7 +148,7 @@ enum __QuestFlags QUEST_TRINITY_FLAGS_EXPLORATION_OR_EVENT = 0x00200000, // Set by 2 in SpecialFlags from DB (if reequired area explore, spell SPELL_EFFECT_QUEST_COMPLETE casting, table `*_script` command SCRIPT_COMMAND_QUEST_EXPLORED use, set from script) QUEST_TRINITY_FLAGS_AUTO_ACCEPT = 0x00400000, // Set by 4 in SpecialFlags in DB if the quest is to be auto-accepted. - QUEST_TRINITY_FLAGS_DB_ALLOWED = 0xFFFFF | QUEST_TRINITY_FLAGS_REPEATABLE | QUEST_TRINITY_FLAGS_EXPLORATION_OR_EVENT, + QUEST_TRINITY_FLAGS_DB_ALLOWED = 0xFFFFF | QUEST_TRINITY_FLAGS_REPEATABLE | QUEST_TRINITY_FLAGS_EXPLORATION_OR_EVENT | QUEST_TRINITY_FLAGS_AUTO_ACCEPT, // Trinity flags for internal use only QUEST_TRINITY_FLAGS_DELIVER = 0x04000000, // Internal flag computed only |