diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2017-04-24 16:33:51 -0300 |
|---|---|---|
| committer | ariel- <ariel-@users.noreply.github.com> | 2017-04-24 16:34:50 -0300 |
| commit | 157e9311c41a8d33f7a2e3d5381ffc09d4585c42 (patch) | |
| tree | 7a28c7d3617a5dfb979d987f969d58a8018f066c /src/server/game/Quests | |
| parent | 4c09b8a02f983e54bdd8049af130f7ca0bde218d (diff) | |
Core/Quests: implemented MSG_QUEST_PUSH_RESULT notifications
- Allow to share already completed (but not rewarded) quests, restriction was unblizzlike
thanks Cannix for the heads up
Diffstat (limited to 'src/server/game/Quests')
| -rw-r--r-- | src/server/game/Quests/QuestDef.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/game/Quests/QuestDef.h b/src/server/game/Quests/QuestDef.h index c92b548f7b4..eb653ccf096 100644 --- a/src/server/game/Quests/QuestDef.h +++ b/src/server/game/Quests/QuestDef.h @@ -73,7 +73,8 @@ enum QuestShareMessages : uint8 QUEST_PARTY_MSG_FINISH_QUEST = 7, QUEST_PARTY_MSG_CANT_BE_SHARED_TODAY = 8, QUEST_PARTY_MSG_SHARING_TIMER_EXPIRED = 9, - QUEST_PARTY_MSG_NOT_IN_PARTY = 10 + QUEST_PARTY_MSG_NOT_IN_PARTY = 10, + QUEST_PARTY_MSG_NOT_ELIGIBLE_TODAY = 11 }; enum QuestTradeSkill |
