From d18af900dfecf990f4a17a09c9e8c4ecec642504 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Sun, 23 Jul 2023 18:07:05 -0400 Subject: [PATCH] Core/Quests: allow QUEST_SPECIAL_FLAGS_AUTO_PUSH_TO_PARTY to be set in quest_template_addon Port From (https://github.com/TrinityCore/TrinityCore/commit/ff9a23afab84cb084e77d0a005e20c2da1f8d31a) --- Source/Framework/Constants/QuestConst.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Framework/Constants/QuestConst.cs b/Source/Framework/Constants/QuestConst.cs index 444d73912..6a975d073 100644 --- a/Source/Framework/Constants/QuestConst.cs +++ b/Source/Framework/Constants/QuestConst.cs @@ -540,7 +540,7 @@ namespace Framework.Constants Monthly = 0x010, // Set by 16 in SpecialFlags in DB if the quest is reset at the begining of the month // Room For More Custom Flags - DbAllowed = Repeatable | AutoAccept | DfQuest | Monthly, + DbAllowed = Repeatable | AutoPushToParty | AutoAccept | DfQuest | Monthly, SequencedObjectives = 0x20 // Internal flag computed only }