diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-01-21 22:25:10 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-01-21 22:25:10 +0100 |
commit | a4a4d010a0e329d4dbd82c0be5feab1fc06c8834 (patch) | |
tree | f988bcef679ba35e903a53ab2277ade2a92b0640 /src/server/game/Quests/QuestDef.h | |
parent | 5cc1b97fc1430f07d8942ae9f87fd5ad9708db59 (diff) |
Core: Updated to 10.2.5
Diffstat (limited to 'src/server/game/Quests/QuestDef.h')
-rw-r--r-- | src/server/game/Quests/QuestDef.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/game/Quests/QuestDef.h b/src/server/game/Quests/QuestDef.h index 38410aefa0d..ba7a0470c4f 100644 --- a/src/server/game/Quests/QuestDef.h +++ b/src/server/game/Quests/QuestDef.h @@ -349,6 +349,7 @@ enum QuestObjectiveType QUEST_OBJECTIVE_INCREASE_REPUTATION = 18, // requires the player to gain X reputation with a faction QUEST_OBJECTIVE_AREA_TRIGGER_ENTER = 19, QUEST_OBJECTIVE_AREA_TRIGGER_EXIT = 20, + QUEST_OBJECTIVE_KILL_WITH_LABEL = 21, MAX_QUEST_OBJECTIVE_TYPE }; @@ -466,6 +467,7 @@ struct QuestObjective case QUEST_OBJECTIVE_HAVE_CURRENCY: case QUEST_OBJECTIVE_OBTAIN_CURRENCY: case QUEST_OBJECTIVE_INCREASE_REPUTATION: + case QUEST_OBJECTIVE_KILL_WITH_LABEL: return true; default: break; |