Allow repeatable Vanilla quests to give rewards

This commit is contained in:
郑佩茹
2022-09-16 22:14:30 -06:00
parent 3fe8b8f8a7
commit c552a84d4d
3 changed files with 28 additions and 5 deletions

View File

@@ -51,7 +51,9 @@ enum BuffSpells
enum ProgressionQuestIDs
{
MIGHT_OF_KALIMDOR = 8742
MIGHT_OF_KALIMDOR = 8742,
QUEST_MORROWGRAIN = 3803,
QUEST_TROLL_NECKLACE = 2881
};
enum ProgressionMaps
@@ -115,7 +117,7 @@ public:
questXpMapType questXpMap;
float vanillaPowerAdjustment, vanillaHealthAdjustment, tbcPowerAdjustment, tbcHealthAdjustment, vanillaHealingAdjustment, tbcHealingAdjustment, previousGearTuning;
bool enabled, questXpFix, hunterPetLevelFix, requirePreAQQuests, enforceGroupRules, fishingFix, simpleConfigOverride, questMoneyAtLevelCap;
bool enabled, questXpFix, hunterPetLevelFix, requirePreAQQuests, enforceGroupRules, fishingFix, simpleConfigOverride, questMoneyAtLevelCap, repeatableVanillaQuestsXp;
int progressionLimit, startingProgression;
bool hasPassedProgression(Player* player, ProgressionState state) const;